body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color:#101010;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    position: relative;
}
.h2 {
    margin-top: 0;
    text-align: center;
}
.info-container {
            display: none;
            margin-top: -250px;
            padding: 20px;
            border: 1px solid #ccc;

        }
  .container {
    
  }

  .btn-f {
    position: absolute;
    top: calc(100% + -400px);
    left: -150px;
    width: 100%;
    text-align: center;
  }

.vertical-line {
    height: 400px; /* Altura de la línea */
    width: 2px; /* Ancho de la línea */
    background: linear-gradient(300deg, #B49160, #000);
    margin: 0 50px; /* Espacio entre la línea y los botones */
}

.button {
    padding: 30px 30px;
    font-size: 23px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;

}

.left-button {
    background: linear-gradient(100deg, #B49160, #000);
    color: #fff;
    text-decoration:none;
}

.right-button {
    background-color: #7E6A3D;
    color: #fff;
    text-decoration:none;
}

.button:hover {
    background-color: #B49160;
}
@media (max-width: 500px) {
  
    .container{
        top: -50px;
    }
    .vertical-line{
        margin: 10px;
    }
    .btn{
        font-size: 17px;
    }
    .btn-f{
        margin-top: 55px;
        left: -90px;
    }
   

  }
.ques{
    color:#7E6A3D;
}
.btn-f button{
    background: linear-gradient(100deg, #B49160, #000);
    border: none;
    color: #fff;
    font-size: 20px;
    padding: 6px;
    border-radius: 50%;
    width: 35px;
}

  /* Estilos para la ventana modal */
.modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999; /* Ajustar el índice z para asegurarse de que esté encima de otros elementos */
}

.modal-container.show-modal {
    display: flex;
}

.modal {
    background: #fff;
    padding: 20px;
    max-width: 80%; /* Ajustar el ancho máximo de la ventana modal según sea necesario */
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    background: linear-gradient(180deg, #ffffff, #D2B48C);
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 35px;
    color: #7E6A3D;
}

.info-text {
    margin-top: 20px; /* Ajustar el margen superior según sea necesario */
    color: #333; /* Ajustar el color del texto según sea necesario */
    font-size: 18px; /* Ajustar el tamaño de fuente según sea necesario */
    line-height: 1.5; /* Ajustar la altura de línea según sea necesario */
}

/*logo*/
 .logo-container {
    text-align: center;
    margin-top: 20px; /* Ajusta el margen superior según sea necesario */
}

.logo {
    width: 120px; /* Ajusta el ancho del logo según sea necesario */
    height: auto; /* Permite que la altura se ajuste automáticamente según el ancho */
    border-radius: 100%;
    margin-bottom: -120px;
    animation: floating 3s ease infinite;
}
@keyframes floating {
    0% {
        transform: translatey(0px);
    }
    50% {
        transform: translatey(-10px);
    }

    100% {
        transform: translatey(0px);
    }
}

