body {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    margin: 0;
}

header, 
footer {
    background-color: #1F2937;
    width: 100%;
}

header {
    padding-bottom: 100px;
    width: 100%;
}

footer {
    color: #f9faf8;
    display: grid;
    padding: 20px 0;
    place-items: center;
}

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

a {
    color: #e5e7eb;
    text-decoration: none;

    &:hover {
        text-decoration: underline;
    }
}

button {
    background-color: #3882f6;
    border: none;
    border-radius: 10px;
    color: #f9faf8;
    cursor: pointer;
    font-family: inherit;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 40px;
    
    &:hover {
        transform: scale3d(1.05,1.05,1.05);
    }
} 

.container { 
    margin: 0 auto;
    max-width: 1000px; 
}

.navbar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 110px;
    padding-top: 30px;
}

.heading {
    color: #f9faf8;
    font-size: 48px;
    font-weight: 900;
    margin: 0;
}

.header-logo {
    color: #f9faf8;
    font-size: 24px;
    font-weight: 600;
}

.header-logo, 
.links {
    align-items: center;
    display: flex;
    gap: 20px;
}

.hero {
    display: flex;
}

.hero-image {
    border-radius: 10px;
    margin-bottom: 100px;
}

.hero-left-side {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    margin-right: 30px;
}

.text {
    color: #e5e7eb;
    margin: 10px 10px 10px 0px;
}

.btn-outline {
    border: 2px solid #e5e7eb;
}

.information {
    box-sizing: border-box;
    padding: 10px 0 160px;
}

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

.cards-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.card {
    align-items: center;
    display: flex;
    flex-direction: column;
}

.card img {
    background-color: white;
    border: 4px solid #3882f6;
    border-radius: 12px;
    margin: 0;
    overflow: hidden; 
    width: 200px;

    &:hover {
        transform: scale3d(1.05,1.05,1.05);
    }
}

.subtext {
    color: #1F2937;
    margin-top: 15px;
    text-align: center;
}

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

.quote-context { 
    margin: 0 auto;
    max-width: 800px;
    padding: 100px 0;
}

.quote-text {
    font-style: italic;
}

.attribution {
    font-size: 24px;
    font-weight: 400;
    margin-top: 10px;
    text-align: end;
}

.cta-block {
    padding: 100px 0;
}

.cta-banner {
    align-items: center;
    background-color: #3882f6;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    padding: 40px 90px;
}

.heading-call {
    color: #f9faf8;
    font-size: 24px;
    margin: 0;
}