.container {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}
html {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
}
.tshadow {
    color: #FDCF1A;
    text-shadow: 0px 0px 4px #000,
    0px 0px 4px #000,
    0px 0px 4px #000,
    0px 0px 4px #000,
    0px 0px 4px #000,
    0px 0px 4px #000,
    0px 0px 4px #000,
    0px 0px 4px #000,
    0px 0px 4px #000,
    0px 0px 4px #000,
    0px 0px 4px #000,
    0px 0px 4px #000,
    0px 0px 4px #000,
    0px 0px 4px #000,
    0px 0px 4px #000;
}

.whats-fixed {
    position: fixed;
    bottom: 40px;
    right: 40px;
    animation: move 3s infinite;
    z-index: 222;
  }

  .whats-fixed img{
    width: 70px;
  }
  
  @keyframes move {
    25%{
       transform: translateX(-10px);  }
    50%{
      transform: translateX(0px);  
    }
    75%{
      transform: translateX(10px); 
    }
    100%{
      transform: translateX(0px); 
    }
  }