body {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.whats-button {
    position: fixed;
    bottom: 1em;
    right: 1em;
    width: 70px;
    height: 70px;
    z-index: 10000;
    background-color: black;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: .5s ease-in-out;
}

.whats-button i {
    color: inherit;
    font-size: 2.2em;
    transition: .5s ease-in-out;

}

.whats-button:hover {
    background-color: rgb(209, 209, 209);
    color: black;
    transition: .5s ease-in-out;

}
.container.home-container {
    display: flex;
    flex-direction: column;
    
    
}
.section-title {
    font-family: 'Playfair Display', serif;
    color: rgb(36, 34, 34);
    z-index: 10;
    font-size: 3em;
    font-weight: 500;
}

.section-paragraph {
    color: rgb(41, 39, 39);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.25em;
}

.section-button {
    background-color: #c8c3b5;
    color: white;
    text-decoration: none;
    width: 90%;
    max-width: 190px;

    padding: 1em 1em;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-top: .5em;
}

.section-button i {
    font-size: 1.6em;
}


@media screen and (min-width: 900px) {

    .container.home-container {
        display: flex;
        flex-direction: row;
        gap: 2em;
        
        
    }

}