*{
    padding: 0; margin: 0;
    outline: none; border: none;
    list-style: none;
}

html{
    font-size: 60.5%;
    width: 100%;
}

body{
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #E5D2B8;
    padding: 5rem 0rem;
    overflow-y: hidden;
}

a{
    text-decoration: none;
}

.container{
    display: flex;
    justify-content: space-between;
    width: 70%;
}

h1{
    font-size: 3.5rem;
    color: #3C5148;
    text-align: center;
    margin-top: 9rem;
    display: flex;
    padding-top: 20rem;
}

@media(max-width: 800px){
    h1{
        font-size: 2.5rem;
    }
}
@media(max-width: 700px){
    h1{
        font-size: 2rem;
    }
}

.list_name{
    font-size: 4.5rem;
    color: #3C5148;
    padding: 0 5rem;
    background-color: #3C5148;
    color: #E5D2B8;
    width: 15rem;
    border-radius: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 4rem;
    cursor: pointer;
}

.lang{
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    padding: 5rem;
    font-size: 3rem;
    color: #6e5030;
    display: none;
}

.active-list{
    display: flex;
}

.lang li{
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: fit-content;
    padding: 1.5rem;
    margin-top: 3rem;
    border-radius: 5rem;
    background-color: #C0CFB2;
}

.lang li:hover{
    color: #C0CFB2;
    background-color: #6e5030;
}

.lang li.active{
    color: #C0CFB2;
    background-color: #6e5030;
}


@media(max-width: 800px){
    .lang li{
        font-size: 2rem;
        padding: 1rem;
    }

}
@media(max-width: 700px){
    .lang li{
        font-size: 2rem;
    }
}
@media(max-width: 650px){
    .list_name{
        font-size: 2.5rem;
        padding: 0 1rem;
    }
}
@media(max-width: 510px){
    .lang li{
        font-size: 1.5rem;
        padding: 0.8rem;
    }
    .list_name{
        font-size: 2rem;
        padding: 0 1rem;
    }
    h1{
       margin-bottom: 10rem;
    }

}
@media(max-width: 410px){
    h1{
       margin-bottom: 10rem;
    }

}