@keyframes tilt {
  0% {
    transform: rotate(0deg);
  }

  4% {
    transform: rotate(1deg);
  }

  8% {
    transform: rotate(0deg);
  }

  12% {
    transform: rotate(-1deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.tilt {
  animation: tilt 0.8s infinite alternate;
}

body {
  background: #f1f1f1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  flex-direction: column;
  width: 100%;
}

.main_content {
  width: 90%;
  max-width: 500px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
}

.logo {
  width: 65%;
  margin: 10px 0 5px 0;
  border-radius: 50%;
}

.frase_topo {
  margin: 35px 0 15px 0;
  color: #333;
  font-size: 1.1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  text-align: center;
  text-rendering: optimizeLegibility !important;
  width: 95%;
}

.subhead {
  margin: 0 0 25px 0;
  font-size: 0.9rem;
}

.menu {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 75%;
}

.bt {
  color: #edf2f4;
  background: #1d8f06;
  width: 105%;
  margin: 10px 0;
  outline: none;
  padding: 14px 35px;
  border-style: solid;
  border-width: 0 0 3px;
  border-color: #edf2f4;
  border-radius: 500px 500px 500px 500px;
  box-shadow: 0 6px 5px 0 rgba(0, 0, 0, .14);
  font-size: 1.3rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-shadow: 0 2px 4px #1d8f06;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  transition: all 100ms ease-in-out;
  text-rendering: optimizeLegibility !important;
  scale: 1;
}

.bt:active,
.bt:focus,
.bt:hover {
  color: #edf2f4;
  scale: 1.05;
  background: #012757;
}

.bt.wpp {
  color: #fff;
  background: #199d0f;
  border-color: #0f7807;
  text-shadow: 0 4px 4px #0f7807;
}

.bt.wpp:active,
.bt.wpp:focus,
.bt.wpp:hover {
  scale: 1.05;
  background: #0f7807;
}

.bt img {
  width: 20px;
}

.bt div {
  text-align: center;
  flex: 1;
}

.color_white {
  filter: invert(100%);
}

.color_change {
  filter: invert(100%);
}

.caramel {
  width: 100%;
  text-align: center;
  margin-top: 40px;
  background: #a65900;
  padding: 15px 0;
}

.made {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  text-decoration: none;
  font-style: normal;
  text-align: center;
}

.logocaramel {
  display: block;
  margin-top: 10px;
  text-align: center;
}

.footer_line {
  width: 100%;
  margin-top: 50px;
  margin-bottom: 30px;
  border-bottom: 1px solid #222;
}

.text_footer {
  font-size: 0.8rem;
  font-family: 'Inter', sans-serif;
  color: #222;
  text-align: center;
  margin: 4px 0;
}

@media (max-width: 370px) {
  .bt {
    font-size: 1.1rem;
    width: 105%;
    padding: 14px 30px;
  }
}