body {
  height: 100vh;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  margin: 0;
  box-sizing: border-box;
  padding: 0;
  font-family: sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url(./image.webp);
  background-position: 70%;
  background-repeat: no-repeat;
  background-size: cover
}

.container {
  text-align: center;
  margin: 90px;
  width: 600px;
  height: 410px;
  border: 1px solid rgba(255,255,255,.36);
  /* border-bottom: none; */
  backdrop-filter:  blur(15px);
  border-radius: 20px
}

.container>h1 {
  position: relative;
  padding: 2px;
  color: #fff;
  text-align: center;
  font-size: 50px;
  text-shadow: 0 0 7px,2px 5px 5px red
}

.divButtoms {
  margin-top: 130px;
  display: flex;
  justify-content: center;
  gap: 10rem
}

span {
  cursor: pointer;
  color: #fff;
  font-size: 45px;
  width: 120px;
  height: 70px;
  text-align: center;
  line-height: 70px;
  border-radius: 10px;
  border: solid 1px;
  font-weight: 900;
  text-transform: uppercase;
  transition: .1s
}

span:hover {
  background: rgba(255,255,255,.26);
  backdrop-filter: blur(10px)
}

.audio {
  position: absolute
}

@keyframes animate {
  0% {
      background-position: 0px 50%
  }

  50% {
      background-position: 100% 50%
  }

  to {
      background-position: 0px 50%
  }
}

body>p {
  color: #fff;
  font-size: 25px;
  text-shadow: 0 0 6px
}

@media screen and (max-width: 650px) {
  body {
      height:100vh
  }

  .container {
      margin-top: 10rem;
      width: 100%;
      height: 0 !important; 
      border: none
      
  }

  .container>h1 {
      font-size: 40px;
      top: -205px;
      padding: 5px
  }

  .divButtoms {
      gap: 4.5rem;
      margin-top: 50px
  }

  span {
      border-radius: 20px;
      box-shadow: 0 0 5px,0 0 5px red
  }

  .corazon {
      z-index: 9999!important;
      top: 300px!important;
      font-size: 180px!important
  }

  body>p {
      font-size: 20px;
      padding-bottom: 11px;
      transform: translateY(250px);
  }

  .audio {
      font-size: 20px!important
  }
}

@media screen and (max-width: 400px) {
  .container {
    height: 100vh;
      border:none;
      margin-top: 5rem!important
  }
  .container>h1{
    top: -150px;
  }

  .corazon {
    z-index: 2!important;
    font-size: 150px!important;
    position: absolute;
    top: 300px!important;
  }

  .divButtoms {
      gap: 2.5rem;
      margin-top: 100px
  }

  span {
      font-size: 35px;
      width: 100px;
      height: 60px;
      line-height: 65px
  }

  body>p {
      transform: translateY(280px);
      text-align: center;
      font-size: 20px
  }

  .audio {
      font-size: 20px!important
  }
}

@keyframes latidos {
  0% {
      transform: none
  }

  50% {
      transform: scale(1.3)
  }

  to {
      transform: none
  }
}

.corazon {
  position: absolute;
  display: inline-block;
  top: 190px;
  font-size: 150px;
  color: red;
  transform-origin: center;
  text-shadow: 0 0 10px;
  z-index: 999
}

.aviso {
  border-radius: 20px;
  z-index: 199229;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg,rgba(255,255,255,.1),rgba(255,255,255,.1));
  backdrop-filter: blur(5px);
  padding: 30px;
  box-shadow: 0 0 20px #fff;
  text-align: center
}

h2,p {
  color: #ffffff;
  text-shadow: 0 0 4px red;
  text-transform: uppercase
}

.btn {
  cursor: pointer;
  font-size: 16px;
  padding: 5px 15px;
  background-color: transparent;
  border: 2px white solid;
  border-radius: 10px;
  color: #fff;
  text-transform: uppercase
}

.audio {
  position: absolute;
  top: 20px;
  color: #4A4A4A;
  right: 20px;
  border: none;
  background: #A8D5BA;
  padding: 10px;
  border-radius: 5px;
  font-size: 20px;
  transition: .5s
}
