html {
  height: 100%;
  width: 100%;
}

body {
  background-image: url(botoes/Gemini_Generated_Image_s05ps9s05ps9s05p.png);
  background-size:cover;
  background-position: center;
  background-repeat: repeat-y;
  background-attachment: fixed;
}


/*body::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("botoes/seletor-background.jpg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
  z-index: -1;
}*/

.logo {
  width: 370px;
  height: 72px;
  margin: 0 auto;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -webkit-animation: swing 1s ease;
  animation: swing 1s ease;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

@media (max-width: 768px) {
  .logo {
    width: 100%;
  }
}

h2 {
  color: white;
}

img {
  vertical-align: center;
}

.bg-bonja {
  background-color: #2562b3;
  border-radius: 12px;
}


.bg-bonja img {
  width: 311px;
  height: 112px;
}

.animation {
  -webkit-transition: all 600ms ease-out;
  -moz-transition: all 600ms ease-out;
  transition: all 600ms ease-out;
}

.animation:hover {
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  transform: translateY(-5px);
}

@media (min-width: 370px) and (max-width: 1199px) {

  .bgimg {
    background-image: none;
  }
}


.container {
  backdrop-filter: blur(2px);
  max-width: 800px;
  border-radius: 12px;
  box-shadow: 0px 0px 25px 25px rgba(0,0,0,0.2);
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 5rem;
}


@media (min-width: 992px) {
  .container,
  .container-md,
  .container-sm {
    max-width: 1100px !important;
  }
}

/*@-webkit-keyframes swing {
  15% {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }

  30% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }

  50% {
    -webkit-transform: translateX(3px);
    transform: translateX(3px);
  }

  65% {
    -webkit-transform: translateX(-3px);
    transform: translateX(-3px);
  }

  80% {
    -webkit-transform: translateX(2px);
    transform: translateX(2px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
/* Make container wider on mobile screens */
@media (max-width: 576px) {
  .container {
    max-width: 100% !important;
  }
}

/*@keyframes swing {
  15% {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }

  30% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }

  50% {
    -webkit-transform: translateX(3px);
    transform: translateX(3px);
  }

  65% {
    -webkit-transform: translateX(-3px);
    transform: translateX(-3px);
  }

  80% {
    -webkit-transform: translateX(2px);
    transform: translateX(2px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}