*{
    font-family: calibri, monospace;
  }

body{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #546E7A;
}

#root {
    align-items: center;
    justify-content: center;
    width: 150vh;
    box-shadow: 8px 8px 35px 0px #7e9097;
    border-radius: 10px 100px / 120px;
    background-color: #29434e;
  }

  #inicio{
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-direction: column;
  }

  #logo{
    padding: 0;
    margin-top: 5px;
    display: flex;
    justify-content: center;
    align-items: center;

  }

  #titulo{
    justify-content: center;
    align-items: center;
    text-align: center;
    color: rgb(255, 255, 255);
    padding: 0;
    font-size: 30px;
  }

  #input-original {
    height:  200px;
    width: 600px;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    font-size: 30px;
    resize: none;
    margin: 0;
    background-color: #819CA9;
    border-color:#263238;
    border-width: 2px;
    color: white;
    margin-left: 20px;
  }


  #barra{
    display: flex;
    justify-content: center;
    color: rgb(255, 255, 255);
  }

  

  #botones{
      display: flex;
      padding: 20px 20px 20px 20px;
      justify-content: center;
      align-items: center;
  }


  .button{
    align-items: center;
    background-color: #000a12;
    border: 0;
    border-radius: 100px;
    box-sizing: border-box;
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    font-size: 16px;
    font-weight: 600;
    justify-content: center;
    line-height: 20px;
    max-width: 480px;
    min-height: 40px;
    min-width: 0px;
    overflow: hidden;
    padding: 0px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    touch-action: manipulation;
    transition: background-color 0.167s;
    vertical-align: middle;
    margin-left: 20px;
  }

  .button:hover{ 
    background-color: #012f55;
    color: #ffffff;
  }

  #instrucciones{
    margin: 0;
    padding: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 30px;
    margin-left: 10px;
    cursor: pointer;
  }
  

  .resultado{
    margin: 0;
    align-items: center;
    justify-content: center;
  }

  #texto{
    height:  200px;
    width: 600px;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: row;
    font-size: 30px;
    resize: none;
    margin-bottom: 50px;
    background-color: #819CA9;
    border-color:#263238;
    border-width: 2px;
    color: white;
  }

  textarea {
    margin: auto;
    display: block;
    text-align: center;
}


#cuadro{
  display: flex;
  justify-content: center;
}


.tooltip {
  position: relative;
  display: inline-block;
}


.tooltip .tooltiptext {
  visibility: hidden;
  width: 400px;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
}


.tooltip:hover .tooltiptext {
  visibility: visible;
}