.cookie-consent {
    font-family: monospace;
    padding: 20px;
    text-align: center;
    font-size: 16px;
    color: grey;
    position: fixed;
    overflow: hidden;
    bottom: 0;
    left: 0;
    right: 0;
    box-sizing: border-box;
    width: 100%;
    background-color: black;
    z-index: 1000;
}
.cookie-consent a {
    color: deepskyblue;
    text-decoration: none;
}
.cookie-consent a:hover {
    color: white;
}
.cookie-consent .cookie-accept-btn {
    position: absolute;
    right: 50px;
    top: 30%;
}
.cookie-consent .btn {
    background-color: goldenrod;
    border-radius: 5px;
    border-style: solid;
    border-color: goldenrod;
    color: black;
    padding: 4px 25px;
    cursor: pointer;
    font-weight: bold;
}
.cookie-consent .btn:hover {
    border-style: outset;
}
.cookie-consent .btn:active {
    border-style: inset;
}
