.title-container {
    position: absolute;
    left: 20px;
    margin-top: 30px;
}
.modern-title {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: larger;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    text-align: center;
    padding: 5px 10px;
    color: #010100;
    border: 2px solid #010100;
    border-radius: 5px;
    z-index: 1;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}


.modern-name{
    font-family: Verdana, Geneva, Tahoma, sans-serif;

}

body {
    background: #ffffff;
    font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
    color: #c2c2c2;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
}

.btn-1,
.btn-2 {
    width: 300px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
/* Created by http://grohit.com/  */
footer a,
.btn-1 a,
.btn-2 a {
    text-decoration: none;
    border: 2px solid #010100;
    padding: 15px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

span {
    position: relative;
    /* z-index coz when we put bg to before and after this span text will not be visible */
    z-index: 3;
}

/* Button 1 styles */

.btn-1 a::before {
    content: "";
    position: absolute;
    top: 5px;
    left: -2px;
    width: calc(100% + 6px);
    /*100% plus double the times left values*/
    height: calc(100% - 10px);
    background-color: #ffffff;
    transition: all 0.5s ease-in-out;
    transform: scaleY(1);
}

.btn-1 a:hover::before,
.btn-2 a:hover::before {
    transform: scaleY(0);
}

.btn-1 a::after {
    content: "";
    position: absolute;
    left: 5px;
    top: -5px;
    width: calc(100% - 10px);
    /*100% plus double the times left values*/
    height: calc(100% + 10px);
    background-color: #ffffff;
    transition: all 0.5s ease-in-out;
    transform: scaleX(1);
}
/* Created by http://grohit.com/  */

.btn-1 a:hover::after,
.btn-2 a:hover::after {
    transform: scaleX(0);
}

/* Button 2 styles */

.btn-2 a {
    color: #ffffff;
    transition: all 0.5s ease-in-out;
}

.btn-2 a:hover {
    color: #000000;
    transition: all 0.5s ease-in-out;
}

.btn-2 a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    transition: all 0.5s ease-in-out;
    transform: scaleY(1);
}

.btn-2 a::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    transition: all 0.5s ease-in-out;
    transform: scaleX(1);
}

/* Created by http://grohit.com/  */
footer{
    text-align: center;
    font-size: 10px;
}

/*** ESTILOS BOTÓN SLIDE TOP ***/
.ov-btn-slide-top {
    /*background: #AB4391;  color de fondo */
    color: #FFFFFF; /* color de fuente */
    border: 2px none; /* tamaño y color de borde */
    padding: 16px 20px;
    border-radius: 10px; /* redondear bordes */
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-block;
    background-image: linear-gradient(to right, #AB4391 0%, #e6197a 100%);
}
.ov-btn-slide-top:hover {
    color: #fff; /* color de fuente hover */
    background-color: #93025b; /* Un tono más oscuro que combina bien */
    background-position: right center;
}
.ov-btn-slide-top::after {
    content: "";
    background-image: linear-gradient(to right, #e6197a 0%, #AB4391 100%);
    position: absolute;
    z-index: -1;
    padding: 16px 20px;
    display: block;
    left: 0;
    right: 0;
    top: -100%;
    bottom: 100%;
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
}
.ov-btn-slide-top:hover::after {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
}

.contenedor-boton{
    display: flex;
}
.ubi{
    justify-content: center;
}

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
    position: relative;
    width: 100vw; /* Ancho completo de la ventana */
    height: 100vh; /* Alto completo de la ventana */
    overflow: hidden; /* Ocultar el desbordamiento */
}

.mySlides {
    display: none; /* Ocultar imágenes por defecto */
    width: 100%; /* Ancho completo */
    height: 100%; /* Alto completo */
}

/* Para centrar la imagen sin estirarla */
.mySlides img {
    width: auto; /* Ancho automático */
    height: 100%; /* Alto completo */
    display: block; /* Eliminar espacio debajo de la imagen */
    margin: 0 auto; /* Centrar horizontalmente */
    object-fit: cover; /* Mantener proporción sin estirar */
}

/* Asegúrate de que no haya márgenes en el body */
body {
    background: #bbb;
    margin: 0; /* Eliminar márgenes del body */
}

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    z-index: 1;
}

.active, .dot:hover {
    background-color: #717171;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1s;
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}



