* {
    font-family: "Roboto", sans-serif;
    margin: 0px;
    padding: 0px;
}

/* HEADER */
header {
    align-items: center;
    background-color: #1F2937;
    display: flex;
    justify-content: space-between;
    padding: 10px 10%;
}

header > div > p {
    color: #F9FAF8;
    font-size: 24px;
    font-weight: 700;
}

header > nav > ul {
    display: flex;
    font-size: 18px;
    gap: 20px;
    list-style-type: none;
}

header > nav > ul > li > a {
    color: #E5E7EB;
    text-decoration: none;
}

/* HERO */
.hero {
    background-color: #1F2937;
    display: flex;
    gap: 50px;
    padding: 100px 10%;
}

.hero > div {
    width: 50%;
}

.hero-image {
    align-items: center;
    background-color: #6E747D;
    display: flex;
    justify-content: center;
}

.hero-image > p {
    color: #F9FAF8;
}

.hero-text > button {
    background-color: #3882F6;
    border: none;
    border-radius: 6px;
    color: #F9FAF8;
    font-weight: 600;
    margin-top: 10px;
    padding: 5px 25px;

}

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

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

/* INFORMATION */
.information {
    padding: 50px 15% 100px;
}

.information > h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 50px;
    text-align: center;
}

.information-container {
    display: flex;
    gap: 5%;
}

.information-container > div > div {
    aspect-ratio: 1;
    border: 3px solid #3882F6;
    border-radius: 20px;
}

.information-container > div > p {
    color: #E5E7EB;
    margin-top: 10px;
    text-align: center;
}

/* QUOTE */
.quote {
    background-color: #E5E7EB;
    padding: 100px 20%;
}

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

.quote > p {
    font-size: 24px;
    font-weight: 900;
    text-align: end;
}

/* SIGNUP */
.signup {
    padding: 100px 10%;
}

.signup > div {
    align-items: center;
    background-color: #3882F6;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    padding: 50px 100px;
}

.signup-button > button {
    background-color: #3882F6;
    border: 2px solid #F9FAF8;
    border-radius: 10px;
    color: #F9FAF8;
    padding: 10px 30px;
}

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

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

/* FOOTER */
footer {
    background-color: #1F2937;
    color: #F9FAF8;
    padding: 30px 0px;
    text-align: center;
}