* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  font-family: "DM Sans", sans-serif;
}

.header-font {
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.content-font {
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

body {
    padding: 0;
}

/* Flexbox Container */
.container {
    margin: 0 auto;
}

/* Hero Section */
.hero {
    text-align: center;
}

.hero-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-box {
    flex-basis: calc(50%);
    min-width: 360px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.hero-title {
    text-align: start;
    font-size: 2.8rem;
    padding-top: 36px;
    padding-inline-start: 48px;
    font-weight: 300;
}

.hero-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-inline-end: 32px;
    padding-inline-start: 48px;
    padding-top: 36px;
    padding-bottom: 36px;
    gap: 24px;
}

.hero-subtitle {
    text-align: start;
    font-size: 3rem;
    font-weight: 800;
}

.hero-cta {
    text-align: start;
    font-size: 1.3rem;
}



.hero-cta span {
    background-color: #0C3EFF;
    color: white;
    border-radius: 4px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

.hero-image div {
    height: 512px;
    background:
        radial-gradient(circle at 45% 45%, #FFCF03, transparent, transparent),
        radial-gradient(circle at 55% 60%, #F8ACE6, transparent, transparent);
}

.emojis-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    height: 48px;
}

.emoji {
    width: 48px;
    height: 48px;
    display: grid;
}

.emoji img {

  grid-column: 1;
  grid-row: 1;
}

.emoji .circle {
    grid-column: 1;
    grid-row: 1;
    border-radius: 100%;
    margin: 4px;
}

.emoji1 {
    background-color: #0D48FF;
}

.emoji2 {
    background-color: #02A4FF;
}

.emoji3 {
    background-color: #EEB1E4;
}

.emoji4 {
    background-color: #FED000;
}

.emoji5 {
    background-color: #FF7501;
}

/* Stores Section */
.stores {
    background: linear-gradient(to right, #F8ACE6, #0C3EFF);
    padding: 16px;
}

.stores-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 48px;
}

.store-box img {
    max-width: 100%;
    height: auto;
}

/* Screenshots Section */
.screenshots-container {
    padding: 48px 0;
    width: 100%;
}

.screenshots {
    /* gradient from top to bottom of #F8ACE6 to #FF6B00 */
    background: linear-gradient(to bottom, #F8ACE6, #FF6B00);
    margin: 0 auto;
    background-color: #b7c12e;
    padding: 16px 8px;
    gap: 20px;
    display: flex;
    flex-direction: column;
    border-radius: 2rem;
    max-width: 1200px;
}

.screenshots-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    padding: 20px;
}

.screenshots-title span {
    background-color: #FF6B00;
    border-radius: 4px;
}

.screenshots-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.screenshot-box {
    background-color: #F3F1F1;
    flex-basis: calc(30%);
    padding: 24px;
    border-radius: 1.2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    font-size: 1.5rem;
}

.screenshot-box img {
    max-width: 100%;
    height: auto;
}

/* Cards Section */
.cards {
    padding: 16px 48px 48px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.cards-headline {
    text-align: start;
    width: 100%;
    max-width: 1020px;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.cards-row {
    display: flex;
    justify-content: space-between;
    flex-grow: 1;
    gap: 24px;
}

.cards-column {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    gap: 24px;
}

@media screen and (max-width: 768px) {
    .cards-row {
        flex-direction: column;
    }
}

.card-box {
    padding: 24px 24px;
    text-align: start;
    display: flex;
    border-radius: 1.4rem;
    color: white;
    max-width: 500px;
}

@media screen and (max-width: 768px) {
    .card-box {
        max-width: 100% !important;
    }

}

.card-headline {
    font-size: 1.5rem;
    font-weight: 800;
    align-content: center;
    align-items: center;
    text-align: start;
    display: flex;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 800;
    padding-bottom: 8px;
}

.card-icon {
    width: 32px;
    min-width: 32px;
    height: 32px;
    min-height: 32px;
    margin-inline-end: 16px;
}

/* Info Section */

.info-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    color: white;
    background: linear-gradient(to bottom, #0C3EFF, #01A2FF);
}

.info {
    margin: 0 auto;
    max-width: 1200px;
    padding: 48px;
}

.info-header {
    font-size: 1.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 48px;
}

.info-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

@media screen and (max-width: 768px) {
    .info-row {
        flex-direction: column;
    }
}

.info-box {
    flex-basis: calc(33% - 24px - 8px);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 16px;
    max-width: 400px;
    margin: 0 auto;
}

.info-box h4 {
    font-size: 1.2rem;
    font-weight: 800;
}

.info-box p {
    font-size: 1rem;
    padding: 0 24px;
}

.info-divider {
    width: 1px;
    background-color: white;
}

@media screen and (max-width: 768px) {
    .info-divider {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
        height: 1px;
        padding: 0 48px;
    }
}

/* Footer */
footer {
    background-color: #0C3EFF;
    color: white;
    padding: 32px;
}

footer a {
    color: white;
    text-decoration: none;
}

.footer-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-button a {
    padding: 8px 16px;
    border-radius: .4rem;
    border: 2px solid white;
    background-color: #0C3EFF;
}

.footer-button a:hover {
    background-color: white;
    color: #0C3EFF;
}

.footer-ig {
    width: 64px;
    min-width: 64px;
    height: 64px;
    min-height: 64px;
    margin-inline-end: 16px;
}

.footer-spacer {
    flex-grow: 1;
}

.footer-logo {
    font-size: 2rem;
}