
body {
    background-color: #bbe2c2;
    font-family: 'Roboto', sans-serif;
    padding: 8rem;
}


a {
    color: #018230;
}

p {
    color: #018230;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    font-size: 0.9rem;
    width: 90vw;
    text-align: center;
    line-height: 1.4rem;
}

#yes, #no {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; /* Adjust based on your image size */
    height: 600px; /* Adjust based on your image size */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    max-width: 100vw;
}

#yes {
    background-image: url('images/ja.png');
}

#no {
    background-image: url('images/nej.png');
}