*{
    margin: 0px;
    padding: 0px;
  }

  body {
    font-family: "Roboto Mono", monospace;
    background-image: url("imgs/Wallp-Anonymous.jpg");
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .botao{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .container {
    text-align: center;
    padding: 20px;
    height: 90vh;
  }
  
  .page-title {
    color: #ffffff;
  }

  .page-subtitle {
    color: #ffffff;
    margin-top: 50px;
  }

  input {
    margin-top: 4%;
    padding: 6px;
    border-radius: 5px;
  }
  
  h1{
    color: white;
    font-size: 2.5em;
    margin: 10px 3px;
  }
  
  p{
    font-size: 1.3em;
    color: #ffffff;
  }
  
  .form-group{
    color: white;
  }
  
  button {
    margin-top: 1%;
    padding: 4px 8px;
    border-radius: 10px;
    background: #ffffff;
  }

  #botaoRecomecar{
    visibility: collapse;
  }

  #botaoTenteNovamente{
    visibility: collapse;
  }
  
  .resultado {
    color: #ffffff;
    /* background-color: white; */
    text-align: center;
    margin-top: 5%;
  }
  

  footer{
    margin: auto auto 10px auto;
    font-size: 14px;
    text-align: center;
    color: #cfcece;
    opacity: 0.6;
    transition: opacity 300ms;
  }
  
  footer a{
    text-decoration: none;
    color: #f0f0f0;
  }
  
  footer:hover{
    opacity: 1;
  }
  
  p::after{
      content: '|';
      margin-left: 5px;
      opacity: 1;
      animation: pisca .7s infinite;
  }
  
  @keyframes pisca{
      0%, 100%{
          opacity: 1;
      }
      50%{
          opacity: 0;
      }
  }