#cookie-banner {
    position: fixed;
    bottom: 1%;
    right: 1%;
    width: 20%;
    background: #222;
    color: #fff;
    padding: 10px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#cookie-banner .buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 100%;
    font-family: "Minecraftia", monospace;
    text-shadow: 2px 2px 0 #000;
    color: white;
}

#cookie-banner button {
    flex: 1;
    color: black;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    margin-top: 15px;
    font-weight: bold;
    width: 100%;
}

#cookie-banner button:first-of-type {
    background-color: #45a049;
}

#cookie-banner button:last-of-type {
    background-color: #f44336;
}