.container{    
    width: 1600px;
    margin: auto;
}

.subcontainer{
    width: 85%;
    margin: auto;
}

#cookies{
    width: 100%;
    position: fixed;
    bottom: 0;
    color: white;
    background-color: #232933;
    z-index: 1;
    display: none;
}

.cookies{
    
    min-height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.cookies a{
    color: white;
    font-weight: 500;

}

#cookies-btn{
    border-radius: 5px;
    padding: 8px 12px 8px 12px;
    cursor: pointer;
    border: 5px;
    background-color: #42220b;
    color: white;
    font-weight: 600;
}

#cookies-btn:hover{
    background-color: white;
    color: #42220b;
}

@media(max-width: 1600px){
    .container{
        width: 100%;
    }
}

@media(max-width: 900px){
    .container{
        padding-top: 20px;
        padding-bottom: 20px;
        width: 100%;   
        text-align: center;     
    }   
    .cookies{
        flex-wrap: wrap;
    }
}

