.cookie-banner {
    display: none;
    position: fixed;
    bottom: 20px;
    width: 50vw;
    max-height: 40vh;
    right: 20px;
    background: black;
    padding: 4rem 4rem 4rem 4rem;
    border-radius: 50px;
    z-index: 1000;
    font-size: 0.95rem;
    color: #5fc9f8;
    font-family: "Outfit";
    overflow-y: scroll;
}

.cookie-banner h2 {
    text-wrap: nowrap;
    font-size: 1.5rem;
}

.cookie-banner a {
    color: #ffd700;
}

.cookie-banner p {
    margin-top: 3rem;
    font-size: 1.3rem;
    color: #FFBECF;
}

.cookie-banner button {
    font-size: 1.3rem;
    margin-top: 3rem;
    float: left;
    background: #35AF60;
    border: none;
    padding: 0.5rem 1rem;
    color: black;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
}

@media only screen and (max-width: 768px) {
    .cookie-banner {
        width: 90vw;
        max-height: 50vh;
        font-size: 1.3rem;
        padding: 2rem 2rem 2rem 2rem;
    }

    .cookie-banner h2 {
        text-wrap: nowrap;
        font-size: 1.2rem;
    }

    .cookie-banner p {
        margin-top: 1rem;
        font-size: 1rem;
    }

    .cookie-banner button {
        font-size: 1rem;
        margin-top: 1rem;
        padding: 0.5rem 1rem;
    }
}
