@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');
*{
    margin: 0;
    padding: 0;
    font-family: 'poppins',sans-serif;
}

section{
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh ;
}

.Edder{
    position: relative;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#myVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
  }

.video-audio {
    -webkit-animation: 0.001s audioPlayer linear infinite;
  animation: 0.001s audioPlayer linear infinite;
  }

  @-webkit-keyframes audioPlayer {
    from {
      opacity: 0.5;
    }
    to {
      opacity: 1;
    }
  }
  
  @keyframes audioPlayer {
    from {
      opacity: 0.5;
    }
    to {
      opacity: 1;
    }
  }

.caja{
    border-radius: 12px;
    position: relative;
    inset: 2px;
    width: 400px;
    background: transparent;
    height: 450px;
    border: 2px solid rgba(255, 255, 255, .5);
    backdrop-filter: blur(20px);
    display: flex;
    justify-content: center;
    align-items: center; 
}

h2{
    font-size: 2em;
    color: white; 
    text-align: center;
}

.button{
    color: antiquewhite;
    cursor: pointer; 
    font-size: 3em;
    font-weight: 600;
}

