html {
    box-sizing: border-box;
    font-family: 'Roboto Flex', sans-serif;
}

body {
    margin: 0;
}

.header-wrapper {
    padding: 1rem 15% 6rem 15%;
    background-color: #1F2937;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

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

.header-links {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
    gap: 1rem;
}

.header-link {
    font-size: 18px;
    color: #E5E7EB;
}

.hero-section {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.hero-container {
    flex-basis: 50%;
}

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

.hero-secondary-text {
    font-size: 18px;
    color: #E5E7EB;
}

.hero-sign-up {
    background-color: #3882F6;
    color: white;
    border: none;
    padding: .5rem 2rem;
    border-radius: 8px;
}

.hero-image {
    flex-basis: 50%;
    background-color: gray;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.information-wrapper {
    padding: 1rem 20% 4rem 20%;
}

.information-title {
    text-align: center;
    font-size: 36px;
    color: #1F2937;
    font-weight: 900;
}

.information-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.information-card {
    flex-basis: 150px;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.information-card-image {
    width: 150px;
    height: 150px;
    border: 3px solid #3882F6;
    border-radius: 8px;
}

.information-card-text {
    text-align: center;
}

.quote-wrapper {
    padding: 4rem 20% 4rem 20%;
    background-color: #E5E7EB;
    display: flex;
    flex-direction: column;
}

.quote-text {
    font-style: italic;
    font-size: 36px;
    color: #1F2937;
    font-weight: 300;
}

.quote-author {
    align-self: flex-end;
    font-weight: 900;
}

.cta-wrapper {
    padding: 4rem 15% 4rem 15%;
}

.cta-container {
    padding: 2rem 4rem 2rem 4rem;
    background-color: #3882F6;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.cta-title {
    color: white;
    font-size: 20px;
    font-weight: 900;
}

.cta-text {
    color: #F9FAF8;
}

.cta-sign-up {
    background-color: #3882F6;
    color: white;
    border: 2px solid white;
    padding: .5rem 2rem;
    border-radius: 8px;
}

footer {
    background-color: #1F2937;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #E5E7EB;
    padding: 2rem;
}