@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;1,100;1,300;1,400&display=swap');

* {
    padding: 0;
    margin: 0;
}

body {
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
}

.container {
    width: 100%;
    margin: auto;
    padding: 0 20px;
}

.subcontainer {
    width: 85%;
    margin: auto;
}

#cookies {
    width: 100%;
    position: fixed;
    padding: 15px 0;
    bottom: 0;
    left: 0;
    color: white;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: block;
}

#cookies .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px; /* Optional: for content width */
    margin: 0 auto;
    padding: 0 20px;
}

#cookies p {
    margin: 0;
    font-size: 16px;
}

#cookies a {
    color: #FFD700; /* Set the color of the "More info" link */
    text-decoration: underline; /* Underline the link */
}

.cookies {
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.cookies a {
    color: yellow;
    font-weight: 500;
    text-decoration: none;
}

.cookies-btn, .cookies-no-btn {
    border-radius: 5px;
    padding: 8px 12px;
    font-size: 1rem;
    cursor: pointer;
    border: 3px solid white;
    background-color: white;
    color: white;
}

@media(max-width:1600px) {
    .container {
        width: 100%;
    }
}

@media(max-width:1024px) {
    .cookies {
        padding: 10px 0;
    }
}
