.col6 {
    width: 50%;
    padding-left: 3rem;
    display: flex;
  }
  .row{
    display: flex;
    margin: 0;
    width:100%
  }
  .xlScreen{
    width: 28%!important;
    display: flex;
  }
  .mobileScreen{
    display: none;
  }
  .youtube{
    width: 100%;
margin-top: 2rem;
border-radius: 2rem;
  }
  .btnYoutube {
    padding: 0rem 11rem;
    height: 14vh;
    font-size: 5rem;
    position: relative;
    top: 5rem;
    left: 2rem;
    background-color: black;
    border-radius: 7rem;
    border: outset white;
    box-shadow: 0rem 0rem 1.5rem 0rem #fff;
  }
  
  .btnYoutube a{
    text-decoration: none;
    color: white;
  }
  .btnSpotify{
    padding: 0rem 11rem;
    height: 14vh;
    font-size: 5rem;
    position: relative;
    top: 5rem;
    left: 2rem;
    background-color: black;
    border-radius: 7rem;
    border: outset white;
    box-shadow: 0rem 0rem 1.5rem 0rem #fff;
  }
  .btnSpotify a{
    text-decoration: none;
    color: white;
  }
  .smallYou {
    position: relative;
    font-size: 2rem;
    right: 18rem;
    top: 7rem;
    color: red;
  }
  .smallSpoty{
    position: relative;
    font-size: 2rem;
    right: 18rem;
    top: 7rem;
    color: #1ed760;
  }
  .btnYoutube:hover{
    border: outset black;
  }
  .contenido {
    display: flex;
    margin-bottom: 9rem;
    justify-content: center;
  }
  .brand{
    margin: 3rem;
  }


.logo{
  width: 100%;
  border-radius: 9rem;
  filter: invert(100%);
}
@media screen and (max-width: 820px) {
  body {
    font-size: 16px;
  }
}

.container {
  width: 80%;
  min-height: 10vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.button-container {
  margin: 60px auto 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 930px) {
  .button-container {
    flex-direction: column;
  }
}


/* BUTTON STYLES */
.col4 {
  display: flex;
  flex-direction: column;
  width: 33%;
  text-align: center;
  align-content: center;
  align-items: center;
  align-self: baseline;
}
.button2 {
  position: relative;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid white;
  border-radius: 0.5rem;
  transition: 0.5s all ease-in-out;
  width: 50%;
  height: 6vh;
  margin: 2rem;
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
}
.button2:hover {
  cursor: pointer;
  background: white;
  color: #1f4141;
  animation: none;
  text-decoration: none;
}
.you:hover{
  background: red;
}

.spo:hover{
  background: #1ed760;
}
.face:hover{
  background: #2e89ff;
}
.inst:hover{
  background:#9702fa;
  
}

.button-wiggle {
  animation: wiggle 4s 2s infinite;
}

@keyframes wiggle {
  5%,
  50% {
    transform: scale(1);
  }
  10% {
    transform: scale(0.9);
  }
  15% {
    transform: scale(1.15);
  }
  20% {
    transform: scale(1.15) rotate(-5deg);
  }
  25% {
    transform: scale(1.15) rotate(5deg);
  }
  30% {
    transform: scale(1.15) rotate(-3deg);
  }
  35% {
    transform: scale(1.15) rotate(2deg);
  }
  40% {
    transform: scale(1.15) rotate(0);
  }
}

.button-pulse {
  animation: pulse 2s infinite 3s cubic-bezier(0.25, 0, 0, 1);
  box-shadow: 0 0 0 0 white;
}

@keyframes pulse {
  to {
    box-shadow: 0 0 0 18px rgba(255, 255, 255, 0);
  }
}

.button-float {
  animation: float 1.5s linear alternate infinite;
}

@keyframes float {
  50% {
    transform: translateY(-px);
  }
  100% {
    transform: translateY(-18px);
  }
}


/* OTHER STYLES */

h1 {
  font-weight: 300;
  font-size: 2em;
  text-align: center;
  line-height: 1.3;
  padding: 40px 20px 0 20px;
}
.popup-frame {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #f1f1f1;
  padding: 20px;
  border: 1px solid #ccc;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.3);
  z-index: 9999;
}

.close-button {
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
}


.popup-link {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.popup-link:hover {
  background-color: #f0a606;
}


  @media (max-width: 480px) {
    .imgPopup{
width: 76vw;
    height: 46vh;
    }
    .col4 {
      display: flex;
      flex-direction: column;
      width: 80%;
      text-align: center;
      align-content: center;
      align-items: center;
      align-self: baseline;
      margin: 0rem 4rem;
    }
    .button2{
      width: 90%;
    }
    .contenido{
      display: initial;
      margin-bottom: 0rem;
    }
    .btnYoutube {
      width: 85%;
      position: initial;
      font-size: 3rem;
      height: auto;
      padding: 1.5rem;
      margin: 2rem 3rem;
    }
    .btnSpotify {
      width: 85%;
      position: initial;
      font-size: 3rem;
      height: auto;
      padding: 1.5rem;
      margin: 2rem 3rem;
    }
    .smallYou {
      position: relative;
      font-size: 1.5rem;
      right: -20rem;
      top: -4.9rem;
      color: red;
    }
    .smallSpoty{
      position: relative;
      font-size: 1.5rem;
      right: -20rem;
      top: -4.9rem;
      color: #1ed760;
    }

    .xlScreen{
        display: none!important;
      }
      .mobileScreen{
        display: flex;
        margin-top: 2rem;
      }
      .col6 {
        width: 90%;
        padding-left: 5rem;
        flex-direction: column;
        margin-bottom: 2rem;
      }
      .youtube{
        width: auto;
        margin-top: 0rem;
      }
      .row{
        flex-direction: column;
      }

  }