html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
/*  margin-bottom: 60px;*/
}

/*param utilizar fondos de letras*/
@font-face {
    font-family: 'Poetsenone-1EWv';
    src: url('../font/Poetsenone-1EWv.ttf') format("truetype");
    font-weight: normal;
    font-style: normal;
}

/* Estilos para el Navbar */
.navbar {
    padding: 10px 0; /* Ajusta según tus necesidades */
}

/*Banner*/
.banner-container {
    position: relative;
    height: 70vh;
    overflow: hidden;
    background: url('../img/fondo-banner.jpg') center no-repeat;
    background-size: cover;
}

.banner-content {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    text-align: center;
    margin-bottom: 50px; /* Ajusta según sea necesario */
}

.subscribe-btn {
    padding: 15px 30px;
    font-size: 32px;
    border-radius: 14px;
}

.enlace-responsivo {
    display: none; /* Oculta el enlace por defecto */
}

/* Media query para pantallas pequeñas (ej. móviles) */
@media (max-width: 768px) { /* Puedes ajustar este valor según tu diseño */
    .enlace-responsivo {
        display: inline; /* Muestra el enlace en pantallas pequeñas */
    }
}

