.cookieContainer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;

    background-color: rgba(0,0,0,.7);

    z-index: 100;
}

.cookieBanner {
    position: absolute;
    bottom: 0;

    width: 100vw;
    height: fit-content;

    background-color: white;
    text-align: left;
    color: rgb(19, 19, 19);

    border-radius: 10px 10px 0 0;


    color: rgb(108, 107, 107);
}

.cookieButtons {
    float: right;
    display: flex;

    margin-bottom: 30px;
}


.cookieBanner button {
    color: white;
    padding: 16px 32px;
    
    text-align: center;
    text-decoration: none;
    font-size: 16px;

    transition-duration: 0.1s;
    cursor: pointer;

    box-shadow: 0 5px 7.5px rgba(0,0,0,.8);
    background-color: #18bb5c;
    border: none;
    border-radius: 2px;

    position: relative;
    display: block;

    margin: 10px;
    margin-top: auto;

    width: 150px;
    flex-shrink: 0;
}

.cookieBanner button:hover {
    background-color: #1d8a4b;
}

.cookieBanner button:active {
    box-shadow: 0 0px 0px rgba(0,0,0,.8);
}

.cookieBanner button#declineCookies {
    background-color: rgb(202, 202, 202);
}

.cookieBanner button#declineCookies:hover {
    background-color: white;
    color: rgb(202, 202, 202);
}

.cookieBanner h1 {
    font-size: clamp(25px,5vw,28px);

    font-weight: 300;
    padding: 16px 32px 0px 32px;
}

#cookieText {
    font-size: clamp(14px,2vw,18px);
    padding: 16px 32px;
    margin-bottom: 0;

    float: left;
    margin-bottom: 32px;
}

@media screen and (max-width:600px) {
    .cookieBanner {
        bottom: 50%;
        transform: translateY(50%);
    }
}