main {
    min-height: 75vh;
}

.divider {
    height: 1rem;
    background-color: rgba(0, 0, 0, .1);
    border: solid rgba(0, 0, 0, .15);
    border-width: 1px 0;
    box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
}

.cookie-consent-banner {
    display: none;
    position: fixed;
    bottom: 1%;
    left: 0;
    right: 0;
    background-color: #faf8f8;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    color: black;
    padding: 15px;
    font-size: 16px;
    text-align: center;
    z-index: 1000;
    border-radius: 10px;
}

@media (min-width: 1020px) {
    .cookie-consent-banner {
    display: none;
    position: fixed;
    bottom: 1%;
    left: 25%;
    right: 25%;
    background-color: #faf8f8;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    color: black;
    padding: 15px;
    font-size: 16px;
    text-align: center;
    z-index: 1000;
    }
}

.cookie-consent-banner p {
    margin-bottom: 1px;
}

.cookie-consent-banner h3 {
    margin-bottom: 1px;
}

.cookie-consent-button {
    border: none;
    padding: 8px 16px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px;
}

.cookie-consent-button:hover {
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
}

.cookie-consent-button:active {
    opacity: .5;
}

.cookie-consent-button.btn-accept {
    background-color: #dfe1e5;
    color: black;
}

.cookie-consent-button.btn-grayscale {
    background-color: #dfe1e5;
    color: black;
}

.cookie-consent-button.btn-outline {
    background-color: #dfe1e5;
    color: black;
}

.cookie-consent-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.cookie-consent-options label {
    margin: 0 10px;
    font-size: 16px;
}

.cookie-consent-options input {
    margin-right: 5px;
}