.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
html {
    font-family: "urbane-rounded", sans-serif;
}
body {
    background-color: #FFED00;
}

.nav-menu .menu-atual::after {
      width: 100%;
  }

  .whats-fixed {
    position: fixed;
    bottom: 40px;
    right: 40px;
    animation: move 3s infinite;
    z-index: 222;
    max-width: 65px;
  }
  
  @keyframes move {
    25%{
       transform: translateX(-10px);  }
    50%{
      transform: translateX(0px);  
    }
    75%{
      transform: translateX(10px); 
    }
    100%{
      transform: translateX(0px); 
    }
  }