body {
    font-family: 'Roboto Mono',monospace;
    min-height: 400px;
    background: linear-gradient(236.86deg, #0370ff 27.26%, #051c3a 96.83%) ;
    /* animation-name: mudarCor;
    animation-delay: initial;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-direction: alternate-reverse;
    transition: 1s; */
    color: #fff;
  }

  /* @keyframes mudarCor {
    0% {
      background: linear-gradient(236.86deg, #051c3a 27.26%, #0370ff 96.83%);
    }
    
    50%{
      background: linear-gradient(236.86deg, #0370ff 27.26%, #051c3a 96.83%);     
    }
    100%{
      background: linear-gradient(236.86deg, #051c3a 27.26%, #0370ff 96.83%); 
    }
  } */
  
  .container {
    text-align: center;
    padding: 20px;
    height: 100vh;
  }
  
  .page-title {
    
    margin: 0 0 5px;
  }
  
  .page-subtitle {
    
    margin-top: 5px;
  }
  
  input{
    width: 150px;
    height: 30px;
    margin: 25px 5px 0px 5px;
    border-radius: 10px;
    border: 2px solid blue;
    text-align: center;
  }

  .container-inputs{
    width: 450px;
    height: 150px;
    box-shadow: 2px 2px 10px #292929;
    background-color: aliceblue;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
  }

  button{ 
    width: 100px;
    height: 30px;
    margin: 5px;
    border-radius: 15px;
    border: 2px solid rgb(28, 196, 28);
    cursor: pointer;
  }

  button:hover{
    background-color: rgb(28, 196, 28);
    border: 2px solid #fff;
    color: #fff;
    transition: 1s;
  }

  .btnReset{
    border: 2px solid rgb(224, 120, 23);
  }

  .btnReset:hover{
    background-color: rgb(224, 120, 23);
    border: 2px solid #fff;
    color: #fff;
  }

  