
body{
    background: linear-gradient(270deg, #628E75 0.66%, #1A4855 83.32%) ;
    margin-top: 50px;
    margin-left: 100px;
    margin-right: 100px;
}

nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav img{
    width: 200px;

}

nav .redes{
    font-size: 25px;
    color: antiquewhite;
    margin-right: 20px;
   
    
}
ion-icon{
    padding-right: 10px;
}
main{
    display: flex;
    gap: 20px;
    margin-top: 2rem;
}

h3{
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.03em;
    text-transform: uppercase; 
    color: #F9F9F9;
}
h1{
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 900;
    font-size: 68px;
    line-height: 109%;
    color: #F9F9F9;
    text-transform: uppercase; 
}
p{
    
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 180%;
    color: #F9F9F9;
}

button{
    height: 50px;
    width: 200px;
    margin-top: 1rem;
    margin-right: 0.5rem;
    background: #658E76;
    border: none;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 180%;
    text-transform: uppercase;
    color: #F9F9F9;
    transform: skew(-15deg, 0deg);
    

}
button span {
    transform: skew(15deg, 0deg);
  }

button:hover{
    border: 3px solid #658E76;
    background: transparent;
    cursor: pointer;
}

.imagem img{
    width: 90%;
    animation: quica 1s cubic-bezier(0.68,-0.6, 0.32, 1.6) alternate infinite;
}
@keyframes quica {
    to{
        transform: translateY(30px);
       }
       
       
   }

   @media (max-width: 768px){
      body{
          margin-left: 20px;
          margin-right: 10px;
          margin-top: 10px;
      }

      nav img{
          width: 50%;
      }

      nav .redes{
          font-size: 20px; 
          margin-right: 5px;
          margin-top: 30px;
      }
      ion-icon{
        padding-right: 2px;
        margin-top: 3px;
    }
      main{
        flex-direction: column-reverse;

      }
      main img{
          display: flex;
          justify-content: center;
          margin-left: 30px;
      }
      h3{
        font-size: 18px;
      }
      h1{
        font-size: 50px;
      }
      .trailler{
          display: none;
      }
   }