body {
    background-color: black;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
    height: 100vh;
    
}

.titulo{
    color:white;
    border-color: blue;
    font-size: 20px;

    em{
        color:#9b0808;

    }
}

.aviso{
    color: white;
    font-size: 12px;
    margin-top: -50px;
    margin-bottom: 20px;
}

.linha{
    color: rgb(63, 63, 63);
    border-color: red;
    height: 4px;
    background-color: rgb(109, 7, 7);
    width: 140vh;
    position: relative; /* Ou fixed, se quiser que permaneça fixo na tela */
    top: -2%;
    left: 50%;
    transform: translate(-50%, -50%); /* Move para o centro */
    border-radius: 25px;
}

.titleBox {
    background-color: black;
    text-align: center;
    border-width: 40px;
    border-color: #9b0808;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 200px; /* Altura fixa para o texto */
    overflow: hidden; /* Esconde texto que excede o espaço */
    padding: 20px;
    box-sizing: border-box;
}

.geraFrase{
    padding-left: 10px;
    text-align: center; 

    /*background-color: gray;*/ 
    
    button{
        width: 500px;
        margin-top: 20px;
        height: 60px;
        font-size: 20px;
        border-width: 5px;
        border-color: blue;

        
        background-color: transparent;
        border-radius: 100px;
        color:white;
        transition-duration: 0.4s;
        
    }

    button:hover{
        background-color:#9b0808;
        transition-duration: 0.4s;
    }
}
