*{
    margin: 0;
    padding: 0;
  }
  
  body{
    background-color: rgb(4, 2, 36);
    font-family: 'Cutive Mono', monospace;
    font-family: 'Karla', sans-serif;
    color: rgba(9, 0, 54, 0.849);
  }
  .container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .App{
    position: relative;
    top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
    width: 320px;
    height: 550px;
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
  
  }
  .formulario{
    display: flex;
    flex-direction: column;
  }
  .item_form{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 21px;
    margin-bottom: 15px;
  }
  .item_form input{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 22px;
    border-radius: 5px;
    border: none;
    padding: 4px;
    background-color: rgba(11, 8, 53, 0.822);
    color: white;
  }
  .title_form{
    border-bottom: 1px solid rgb(4, 2, 36);
    margin-bottom: 15px;
    font-size: 30px;
  }
  .resultado{
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    top: 80px;
    background-color: rgba(248, 252, 255, 0.932);
    padding: 5px;
    border-radius: 10px;
    margin-bottom: 100px;
  }
  .resultado p{
    margin: 7px;
  }
  .botao_formulario{
    font-size: 20px;
    color: white;
  }
  .celula_resultado{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  button {
    font-size: 20px;
    background-color: rgba(11, 8, 53, 0.822);
    border-radius: 5px;
    padding: 5px;
    color: rgb(252, 249, 249);
  }
