/* Teto section */

#Teto_body {
    background-color: #853756;
    overflow: hidden;
  }
  
  #TETO {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 20%;
  }
  
  .float {
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    }
    
    @keyframes floating {
    0% { transform: translate(0, 0px); }
    50% { transform: translate(0, 15px); }
    100% { transform: translate(0, -0px); }
    }
  
   /* Teto section end */

   .REDBOX {
    background-color: red;
    border: solid;
    text-align: center;
    padding: 10px;
    margin: 10px;
   }

   .button {
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    }
    