#cookie-banner {
    position: fixed;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px;
    border-radius: 5px;
    z-index: 1000;
}
.cookie-options {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-evenly;
    align-items: center;
}
#cookie-banner p {
    color:white;
}
#cookie-banner a {
    color: #f0c040;
    text-decoration: none;
}
#cookie-banner .cookie-options label {
    color: white;
}
#cookie-banner button { 
    background: #f0c040;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}
#cookie-banner button:hover {
    background: #ab7f06;
}