body{
  background-color: antiquewhite;
}

@media (max-width: 600px) {
  *{
    margin: 3;
  }

  body{
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 100vh;
  }

  header{
      display: flex;
      justify-content: space-between;
      font-size: 22px;
  }

  main{
    flex: 1 1 0;
    border: 0;
  }

  /* footer{
    font-size: 20px;
  } */

  button{
    font-size: 16px;
  }

  #titulo{
    font-size: 28px;
  }

  #container{
      display: flex;
      justify-content: center;
      flex-direction: column;
  }

  #inputs{
      display: flex;
      align-items: center;
      flex-direction: column;
      padding: 10px;
      font-size: 24px;
  }

  #result{
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  #show{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 26px;
  }

  #update{
    display: none;
  }

  #delete{
    display: none;
  }
  .userDigit{
    font-size: 18px;
  }
}

@media (min-width: 600px) {
  /* *{
    margin: 3;
  } */

  body{
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 100vh;
  }

  header{
      display: flex;
      justify-content: space-between;
      font-size: 22px;
  }

  main{
    flex: 1 1 0;
    border: 0;
  }

  /* footer{

  } */

  button{
    font-size: 20px;
  }

  hr{
    border-color: rgb(0, 0, 0);
  }

  #titulo{
    font-size: 28px;
  }

  #container{
      display: flex;
      justify-content: center;
      flex-direction: column;
  }

  #inputs{
      display: flex;
      align-items: center;
      flex-direction: column;
      padding: 10px;
      font-size: 24px;
      border: solid black;
      border-top-left-radius: 24px;
      border-top-right-radius: 24px;
  }

  #result{
    display: flex;
    align-items: center;
    flex-direction: column;
    
  }

  #show{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 26px;
    border: solid black;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
  }

  #update{
    display: none;
  }

  #delete{
    display: none;
  }

  #footer{
    display: flex;
    justify-content: space-between;
  }

  .userDigit{
    box-shadow: 5px 5px 5px rgba(0,0,0,0.8);
    font-size: 18px;
  }

  .show{
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
  }
}
