body {
    display: flex;
    flex-direction: column;
    margin: 0;
    height: 100vh;
    font-family: Roboto, sans-serif;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: #E5E7EB;
}

p {
    margin: 0;
}

button {
    background-color: #3882F6;
    color: #F9FAF8;
    border-radius: 8px;
    padding: 8px 32px;
    font-weight: 900;
    border-color: #1F2937;
}

button:hover {
    cursor: pointer;
}

.header, .section-one, .footer {
    background-color: #1F2937;
}

.header {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

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

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

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

.hero-text {
    display: flex;
    width: 450px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.section-one {
    display: flex;
    justify-content: center;
    gap: 54px;
    padding: 64px 0px;
    flex-wrap: wrap;
}

.section-two {
    padding-bottom: 54px;
}

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

.information-boxes {
    display: flex;
    gap: 48px;
    justify-content: center;
    flex-wrap: wrap;
}

.border-img {
    border: 4px solid #3882F6;
    height: 150px;
    width: 150px;
    border-radius: 16px;
}

.img-text {
    display: flex;
    text-align: center;
    width: 150px;
    color: #1F2937;
    font-size: 18px;
}

.section-three {
    background-color: #E5E7EB;
    display: flex;
    justify-content: center;
    padding: 54px 0;
}

.quote-and-author {
    width: 800px;
}

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

.author {
    display: flex;
    justify-content: flex-end;
    font-size: 24px;
    font-weight: 800;
    color: #1F2937;
}

.section-four {
    display: flex;
    justify-content: center;
    padding: 54px 0;
}

.cta-box {
    background-color: #3882F6;
    border-radius: 8px;
    width: 1000px;
    height: 150px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.cta-button {
    display: flex;
    border-color: #F9FAF8;
    border-style: solid;
    height: 40px;
    align-items: center;
}

.cta-text {
    font-size: 24px;
    color: #F9FAF8;
}



.footer {
    margin-top: auto;
    text-align: center;
    padding: 36px 0px;
}
