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

.header {
    display: flex;
    background-color: #1f2937;
    justify-content: space-around;
    padding: 15px;

    .title {
        color: #f9faf8;
        font-size: 24px;
    }
}

ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 15px;
}

a {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 18px;
}

.section1 {
    display: flex;
    background-color: #1f2937;
    justify-content: center;
    padding: 100px;
    gap: 30px;

    .container {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 450px;

        .title {
            color: #f9faf8;
            font-size: 48px;
            font-weight: 900;
        }

        .text {
            font-size: 18px;
            color: #E5E7Eb;
        }

        button {
            width: 120px;
            color: white;
            background: #3882f6;
            border: #3882f6;
            padding: 8px 6px;
            border-radius: 25px;
        }
    }

}

.section2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 0px;
    gap: 50px;

    .title {
        color: #1f2937;
        font-size: 36px;
        font-weight: 900;
    }

    .container {
        display: flex;
        gap: 50px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .text {
        font-size: 18px;
        color: grey;
        text-align: center;
        width: 250px;
        margin-top: 15px;
    }

    img {
        border-radius: 15px;
    }

}

.section3 {
    background-color: #E5E7Eb;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 250px;
    gap: 10px;

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

    .author {
        align-self: flex-end;
        font-size: 20px;
        font-weight: 700;
    }
}

.section4 {
    display: flex;
    justify-content: space-around;
    background: #3882f6;
    margin: 100px 200px;
    padding: 50px;
    border-radius: 15px;

    .info {
        display: flex;
        flex-direction: column;

        .title {
            font-size: 24px;
            font-weight: 700;
            color: white;
        }

        .text {
            color: #E5E7Eb
        }
    }

    button {
        background: #3882f6;
        color: white;
        border: 2px solid #E5E7Eb;
        border-radius: 25px;
        padding: 8px 50px;
    }
}

.footer {
    display: flex;
    justify-content: center;
    background: #1f2937;
    padding: 25px 100px;
    color: #E5E7Eb;
    font-size: 18px;
}