* {
    user-select: none;
}

body {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    background-image: url('../img/fundoInicio.png');
    background-size: cover;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.281); 
    z-index: -1;
}

.menu{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#logo{
    width: 60vw;
}
#modoEx, #modoNormal{
    margin-top: 2vw;
    width: 25vw;
    cursor: pointer;
}

#modoEx:hover, #modoNormal:hover{
    transform: scale(1.2);
}

#descricaoEx{
    font-family: 'Arial', sans-serif;
    color: #ff0000;
    font-size: 1.2vw;
    font-weight: bold;
    font-style: italic; 
    background-color: #ffffff;
    border-radius: 1vw;
}
