/* cookies banner */
.cookie-banner {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 15px;
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    font-size: 14px;
    z-index: 9999;
    transform: scale(1);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.cookie-button {
    background-color: #f4b400;
    color: black;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    margin-left: 10px;
    border-radius: 3px;
}

.cookie-button:hover {
    background-color: #f7c730;
}

.cookie-p {
    color: white;
}

.cookie-a {
    color: #aed7f3;
}

/* cookies.html */

.cookie {
    border-radius: 25px;
    max-width: 500px;
    height: auto;
    padding-top: 15px;
    padding-bottom: 8px;
    padding-left: 4px;
    padding-right: 4px;
    margin: 40px;
    background-color: rgba(0, 0, 255, 0.2);
    
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}

.cookie-remove-agreement {
    background-color: #4CAF50;
    color: black;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    margin: 5px 20px;
    transition: ease-in-out 0.15s;
}

.cookie-remove-agreement:hover {
    background-color: #59b85e;
    transform: scale(1.1);
}

.about-cookie h3 {
    text-align: center;
    font-size: 0.9em;
    margin: 10px 20px;
}

.about-cookie h2 {
    text-align: center;
    font-size: 1.5em;
    margin: 20px 10px 3px 10px;
}

.about-cookie {
    border-radius: 25px;
    max-width: 500px;
    height: auto;
    padding-top: 0px;
    padding-bottom: 5px;
    padding-left: 4px;
    padding-right: 4px;
    margin: 40px;
    background-color: rgba(0, 0, 255, 0.2);
    
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}

.cookie a {
    color: #1101f1;
    text-decoration: underline;
}

@media (min-width: 649px) {
    .cookie {
        margin: auto;
        margin-bottom: 40px;
        margin-top: 40px;
    }
}

@media (min-width: 649px) {
    .cookie {
        margin: 40px auto;
    }

    .about-cookie {
        margin: 40px auto;
    }
}

@media (min-width: 990px) {
    .about-cookie h2 {
        font-size: 1.7em;
    }

    .about-cookie h3 {
        font-size: 1.2em;
    }
}
