* {
    font-family: 'Cardiff', sans-serif;
}

#box-vr-version2 {

    display: flex;
    flex-direction: column;
    align-items: center;

    border-radius: 20px;
    width: 80%;
    background-color: rgb(255, 255, 255);
}

/* img {
    width: 40%;
    height: auto;
    margin: 5px;
} */

.button {
    width: 100px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #58154a;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    margin-bottom: 10px;
    text-align: center;
}

.button:hover {
    background-color: #992680;
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

#help-overlay {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.8);
    display: none;
    z-index: 1;
}