@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

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

html{
    scroll-behavior: smooth;
}

body{
    font-family: "Montserrat", sans-serif;
}

.container{
    margin: 70px auto;
    width: 50%;
    display: flex;
    gap: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 20px 30px 20px;
    background-color: #e2dbdb;
    border-radius: 20px;
}

.container .description{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-direction: column;
}

.description h1{
    text-align: center;
    color: #16403C;
    font-weight: 500;
}


.description p{
    text-align: center;
    line-height: 17.5pt;
}

.social-media{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-media a{
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #16403C;
    color: #fff;
    text-decoration: none;
    border-radius: 50%;
    transition: all .5s ease-in;
}

.social-media a i{
    font-size: 20px;
}

.social-media a:hover{
background-color: #798C8A;
}

@media screen and (max-width: 768px)  {
    .container{
        margin: 20px auto;
        width: 90%;
        display: flex;
    }
}
