.cookie-container{
    position: fixed;
    padding: 1% 2%;
    z-index: 7;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    filter: opacity(50%);
    display: inline-block;
    width: 100%;
    margin: 0 4px;
    bottom: -100%;
    transition: 0.4s;
}
.cookie-container.active {
    bottom: 0;
}

.cookie-container p{
    font-family: Nunito;
    line-height: 1.2;
    color: snow;
}
#link{
    color: whitesmoke;
    text-decoration: grey underline;
    margin-left: 1%;

}
.cookieButton{
    margin: 0 2%;
    outline: none;
    border-style: none;
    width: 80px;
    height: 3em;
    background-color: #ea2c2c;
    color: white;
    float: right;

}
.cookieButton:hover{
    background-color: #4e4e4e;
    transition: 0.3s;
    cursor: pointer;
}