/* Establece la imagen de fondo */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    height: 100vh;
background: url('./norton22.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contenedor con un ligero fondo para mejorar la visibilidad del texto */
.overlay {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 90%;
}

/* Título */
.title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 30px;
}
h2,h3{
    color: white;
}
h3{
    text-align: left;
}
h4{
    margin-bottom: -15px;
}
li{
    margin-left:50px ;
    margin-top: -15px;
}
.items {
    text-align: left;
    margin: 20px auto;
    max-width: 600px;
    list-style-type: disc;
    color: white;
    font-size: 1.1rem;
}
.items li {
    margin-bottom: 10px;
}

/* Contenedor de botones */
.button-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

/* Estilo de los botones */
.btn {
    background-color: #ffffff;
    color: #000;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    background-color: #ddd;
    transform: scale(1.05);
}

/* Responsividad para pantallas más grandes */
@media (min-width: 600px) {
    .button-container {
        flex-direction: row;
        justify-content: center;
    }
}
