* {
    margin: 0;
}
body {
    font-family: "Roboto",sans-serif;
    height: 100vh;
}

button {
    background-color: #3882f6;
    color: #f9faf8;
    height: 25px;
    width: 100px;
    border-radius: 5px;
    border: none;
    text-decoration: none;
    padding: 0;
}

button:hover {
    cursor:pointer;
}

a {
    text-decoration: none;
}

/* CLASSES */
/* --------TOP SECTION-------------------------------*/
.header, .hero-container {
    color: #f9faf8;
}
.footer {
    color: #e5e7eb;
    background-color: #1f2937;
}
.header-logo {
    font-size: 24px;
    font-weight: bold;
}

.hero-header {
    font-size: 48px;
    font-weight: 900;
}

.hero-sub, .header-link-container a {
    color: #e5e7eb;
    font-size: 18px;
}

.header {
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
}

.hero-image {
    min-width: 300px;
    min-height: 200px;
    background-color: grey;
    flex-basis: 550px;
    flex-grow: 1;
    max-width: 900px;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 50px;
}

.hero-body {
    display: flex;
    flex-direction: column;
}

.hero-button {
    padding-top: 10px;
}

.header-link-container {
    display: flex;
    gap: 20px;
}

.top-section {
    padding: 15px 70px 50px;
    background-color: #1f2937;
}

/* --------CARD SECTION-------------------------------*/
.info-text {
    font-size: 36px;
    color: #1f2937;
    font-weight: 900;
    text-align: center;
    padding: 30px;
}
.card-box {
    border: 4px solid #3882f6;
    border-radius: 10%;
    height: 140px;
    width: 140px;
    flex-grow: 1;
}

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

.card-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding-bottom: 90px;
}

.card {
    display: flex;
    flex-direction: column;
    flex-basis: 100px;
}

/* --------QUOTE SECTION-------------------------------*/
.quote-container {
    background-color: #e5e7eb;
    padding: 90px 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

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

/* --------Call TO ACTION SECTION-------------------------------*/
.C2A-container {
    background-color: #3882f6;
    margin: 50px 100px;
    border-radius: 5px;
    padding: 30px 90px;
    display: flex;
    justify-content: space-between;
    color: #f9faf8;
    flex-wrap: wrap;
    gap: 30px;
}
.C2A-main {
    font-weight: bold;
}
.C2A-btn button {
    border: 2px solid #f9faf8;
    border-radius: 5px;
}

/* --------FOOTER-------------------------------*/
.footer {
    text-align: center;
    padding: 30px;
}