
.container{
    width: 1600px;
    margin: auto;
}

.subcontainer{
    width: 85%;
    margin: auto;
}

#cookies{
    width: 90%;
    position: fixed;
    bottom: 20px; /* Adjust this value for desired spacing from the bottom */
    left: 50%; /* Start from the horizontal center */
    transform: translateX(-50%); /* Move back by half of its own width to truly center it */
    color: aliceblue;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
    backdrop-filter: blur(2px);
    /* display: inline; */
    border-radius: 20px;
    padding: 15px; /* Add some padding for better text spacing */
    text-align: center; /* Center the text inside the div */
}

.cookies{
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.cookies a{
    color: rgb(113, 255, 255);
    font-weight: 300;
    text-decoration: none;
}

#cookies-btn{
    border-radius: 5px;
    padding: 8px 12px 8px 12px;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    border: 1px solid white;
    background-color: black;
    color: azure;

}

@media(max-width:1600px){
    .container{
        width: 100%;
    }
}

@media(max-width:1024px){
    .cookies{
        padding: 10px 0;
    }
}







