h1 {
    font-size: 64px;
    width: 100%;
}

.container {
    flex-wrap: wrap;
}

.hero {
    padding: 0px;
    height: 60vh;

    align-items: flex-end;
    justify-content: flex-start;

    /* make text white */
    color: white;
    background-position: 0% 15%;
}

.carousel li {
    background-color: #eeeeee;
    border: 1px solid #dddddd;
    padding: 20px;
    flex: 0 0 75%;
    font-size: 22px;
    text-align: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.carousel .client-name {
    font-size: 16px;
}

.btn-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5%;
    padding-bottom: 50px;
}

@media (max-width: 700px) {
    h1 {
        font-size: 32px;
    }

    .hero {
        padding: 20px;
        background-position: 60%;
    }
}