.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.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);
  }
}

html {
  font-size: 16px;
  font-family: "Addington CF";
}
a {
  transition: 0.3s;
}
body {
  background-color: #F5F5F5;
}
.btn {
  box-shadow: 0px 0px 0px 1px #000 inset, 0px 0px 0px 0px #000;
  border-radius: 30px;
  padding: 6px 20px;
  max-width: fit-content;
  display: flex;
  align-items: center;
  gap: 5px;
}
button {
  transition: .3s;
  cursor: pointer;
}
.btn:hover {
  box-shadow: 0px 0px 0px 40px #e92424 inset, 0px 0px 0px 2px #000;
  color: #fff!important;
}
