body {
    width: 100vw; /* Corregido de 100wh a 100vw */
    height: 90vh;
    color: #fff;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab, #cf1dc9);
    background-size: 400% 400%;
    animation: Gradient 15s ease infinite; /* Eliminados los prefijos de -webkit y -moz */
}

@keyframes Gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

h1,
h6 {
    font-family: "Open Sans";
    font-weight: 300;
    text-align: center;
    position: absolute;
    top: 45%;
    right: 0;
    left: 0;
}

.shake {
    animation: shake-animation 4.72s ease infinite;
    transform-origin: 50% 50%;
}

.element {
    margin: 0 auto;
    width: 150px;
    height: 150px;
    background: red;
}

@keyframes shake-animation {
    0% {
        transform: translate(0, 0);
    }
    1.78571% {
        transform: translate(5px, 0);
    }
    3.57143% {
        transform: translate(0, 0);
    }
    5.35714% {
        transform: translate(5px, 0);
    }
    7.14286% {
        transform: translate(0, 0);
    }
    8.92857% {
        transform: translate(5px, 0);
    }
    10.71429% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(0, 0);
    }
}

.backdrop {
    box-shadow: 0px 6px 5px #111; /* Eliminados los prefijos de -moz y -webkit */
    border-radius: 190px; /* Eliminados los prefijos de -moz y -webkit */
}

.linktree {
    width: 120px;
    height: 120px;
    background-image: url("https://i.imgur.com/oggcsIH.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.accordion-container {
    transition: height 0.4s ease, opacity 0.4s ease; /* Transición suave */
    overflow: hidden; /* Oculta el desbordamiento */
    display: none; /* Inicialmente oculto */
}

/* styles.css */
.custom-padding {
    padding: 30px 0;
}

.custom-title {
    color: #ffffff;
    padding-top: 20px;
}

.custom-button {
    padding-bottom: 30px;
}

.custom-info-container {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0); /* Fondo transparente */
    border: 2px solid rgba(255, 255, 255, 0.5); /* Borde blanco semi-transparente */
    border-radius: 10px; /* Bordes redondeados */
    color: #ffffff; /* Cambiado a blanco */
    margin-bottom: 30px; /* Margen con respecto al botón de abajo */
    width: 100%; /* Ancho completo para igualar a los demás */
    max-width: 600px; /* Ajusta este valor según el ancho deseado */
    margin-left: auto; /* Centrar horizontalmente */
    margin-right: auto; /* Centrar horizontalmente */
}
.btn {
    width: 80%;
    padding: 10px;
    margin-bottom: 15px; /* Añadido para separar los botones */
}

.btn.btn-outline-light.shake {
    font-weight: 600; /* Ajusta según el botón */
}

.btn.btn-outline-light.shake:first-of-type {
    font-weight: 800; /* Para el botón "Sedes" */
}

.custom-link {
    color: #34312f;
}

#contact-container {
    display: flex;
    justify-content: center;
    gap: 0; /* Eliminar el gap */
    margin-bottom: 30px; /* Separación del botón de "Página Web" */
}

#contact-container button {
    width: auto;
    margin: 0 30px; /* Margen horizontal entre los botones */
    margin-bottom: 0; /* Sin margen inferior */
}
.custom-sede {
    text-align: center;
  }
  .custom-sede .card-body {
    color: white;
  }