body.no-scroll {
    overflow: hidden;
    height: 100%;
}

#cookie-consent-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.5);
    /* 50% transparent black overlay */
}

.cookie-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f5f5f5;
    padding: 20px;
    text-align: center;
    max-width: 80%;
    border-radius: 1em;
}

@media screen and (max-width: 600px) {
    .cookie-content {
        width: calc(100% - 2em);
        max-width: calc(100% - 2em);
        padding: 1em;
        box-sizing: border-box;
    }
}

#cookie-consent-bar .cookie-btn-primary {
    background-color: purple;
    color: white;
}

#cookie-consent-bar .cookie-btn-secondary {
    background-color: white;
}

@media screen and (max-width: 600px) {
    .feature-text {
        margin-top: 5vh;
        font-size: 2rem;
    }
    .text-mission{
        margin-bottom: 5vh;
        font-size: 1.5rem;
    }
}