/* SETUP */

* {
    box-sizing: border-box;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}


/* DEV STYLES */

/* body * {
    border: 1px solid blue;
    padding: 2px;
} */

/* STRUCTURE */




body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex-grow: 1;
}

/* MODULES */

.inner-column {
    display: block;
    padding-inline: 70px;
    padding-block: 20px;
}

@media (min-width: 700px) {
    .graphic-module {
        display: flex;
        flex-direction: row-reverse;
        gap: 8px;
    }

    .graphic-module :is(.text-content, .picture) {
        flex-basis: 50%;
    }
}

.text-content {
    align-content: center;
}

.card-header,
.card-text {
    text-align: center;
}

.graphic-cards {
    display: flex;
    gap: 16px;
}

.quote {
    display: flex;
    flex-flow: column nowrap;

}

.quote-credit {
    text-align: end;
}

.cta {
    display: flex;
    justify-content: space-around;
    gap: 100px;
    padding-inline: 80px;
    padding-block: 20px;
}

.button {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-width: fit-content;

}

.button a {
    color: white;
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links ul {
    display: flex;
    list-style-type: none;
    gap: 16px;
}

footer {
    text-align: center;
}

/* COLORS & TYPOGRAPHY */

body {
    font-family: 'Roboto';
}

.hero,
footer {
    background-color: #1F2937;
}

.hero-main {
    color: #F9FAF8;
    font-size: 48px;
    font-weight: 900;
}

.hero-secondary,
.nav-links {
    color: #E5E7EB;
    font-size: 18px;
}

.header-logo {
    color: #F9FAF8;
    font-size: 24px;
}

.button>span,
.cta {
    background-color: #3882F6;
    color: #F9FAF8;
    border-radius: 10px;
    padding: 5px;
}

.info-header-text {
    font-size: 36px;
    color: #1F2937;
    font-weight: 900;
}

.quote {
    background-color: #E5E7EB;
    font-size: 36px;
    font-style: italic;
    font-weight: 100;
    color: #1F2937;
}

.cta>a>span {
    border: 2px solid #F9FAF8;
}

.card .picture img {
    border: 2px solid #3882F6;
    border-radius: 10px;
}

.cta,
.quote-section,
.graphic-module {
    padding: 8dvw;
}

footer {
    color: #F9FAF8;
    font-weight: 100;
}