body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden; /* Oculta a barra de rolagem */
  }
h1{
    font-family: Arial, Helvetica, sans-serif;
    font-style: center;
    text-align: center;
    color: rgb(232, 231, 231);
}

#video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Z-index menor para que o vídeo fique atrás do conteúdo */
    object-fit: cover; /* Para cobrir toda a área */
}


.conteiner{
    max-width: 350px;
    margin: auto;
    background-color: rgba(165, 28, 28, 0.648);
    padding: 25px;
    border-radius: 10px;
    margin-top: 150px;
    


}

input{
    display: block;
    width: 100%;
}

#resultado{
    color: white;
    font-family:'Courier New', Courier, monospace
}

button {
    padding: 7px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}