* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Roboto, sans-serif;
    overscroll-behavior: none;
}

/* HEADER SECTION */

.header-section {
    background-color: #1F2937;
    padding: 20px 150px 100px 150px;
    display: flex;
    flex-direction: column;
    gap: 90px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #F9FAF8;
    font-size: 18px;
    font-weight: 900;
}

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

.header-links a {
    color: #E5E7EB;
    font-size: 18px;
    text-decoration: none;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

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

.hero-content p {
    color: #E5E7EB;
    font-size: 18px;
}

.hero {
    display: flex;
    justify-content: center;
    gap: 30px;
}

button {
    background-color: #3882F6;
    padding: 10px 35px;
    border: 0;
    border-radius: 10px;
    color: #F9FAF8;
    font-size: 18px;
    font-weight: 700;
}

/* INFORMATION SECTION */

.information {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 200px;
    gap: 40px;
}

.information h2 {
    font-weight: 900;
    font-size: 36px;
    color: #1F2937;
}

.cards {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.card img {
    border: 5px solid #3882f6;
    border-radius: 20px;
}

/* QUOTE SECTION */

.quote-section {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background-color: #E5E7EB;
    padding: 100px 200px;
}

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

.byline {
    align-self: flex-end;
    font-weight: 700;
    font-size: 24px;
}

/* SIGNUP SECTION */

.signup-sec {
    background-color: #3882F6;
    margin: 8% auto;
    width: 75%;
    border-radius: 7px;
    padding: 50px 100px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.signup-text h2 {
    color: #F9FAF8;
}

.signup-text p {
    color: #E5E7EB;
}

.signup-sec button {
    border: solid #F9FAF8;
    height: 40px;
}

/* FOOTER */

footer {
    background-color: #1F2937;
    color: #E5E7EB;
    text-align: center;
    padding: 30px 0;
}