body {
    height: 100vh;
    background: linear-gradient(135deg,
    var(--mp-fresh-purple) 0%,
    var(--mp-fresh-yellow) 30%,
    var(--mp-fresh-blue) 60%,
    var(--mp-fresh-green) 100%
    );
    background-size: 300% 300%; /* Vergroot de achtergrond om de animatie effectiever te maken */
    overflow: hidden;
    min-height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
    var(--mp-fresh-purple) 0%,
    var(--mp-fresh-yellow) 30%,
    var(--mp-fresh-blue) 60%,
    var(--mp-fresh-green) 100%
    );
    background-size: 300% 300%;
    opacity: 0.7;
    z-index: -1;
    animation: freshGradientAnimation 20s ease-in-out infinite;
}

@keyframes freshGradientAnimation {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

.container {
    height: 90%;
}

.block-33 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 33% !important;
}

.btn-start {
    font-size: 35pt !important;
    width: 40%;
    background-color: var(--mp-green) !important;
    color: white !important;
    border: 1px solid #518a35 !important;
}

.locales {
    background-color: white;
    border-radius: 10px;
    padding:20px;
}

.locale-flag {
    float: left;
    margin: 2px;
    border-radius: 10px;
    border:1px solid black;
}

.locale-flag-active{
    border: 3px solid dodgerblue;
}

.pulsating-img {
    animation: pulse 5s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}