* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
}

body {
    background-image: url('./background.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.content {
    text-align: center;
    max-width: 600px;
    padding: 40px;
    text-shadow: 0 0 10px #000;
}

.title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.subtitle {
    font-size: 1.2rem;
    color: #fff;
    line-height: 1.6;
}

/* Tablets - 768px y arriba */
@media (max-width: 768px) {
    .content {
        padding: 30px 20px;
    }

    .title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1rem;
    }
}

/* Móviles - 480px y abajo */
@media (max-width: 480px) {
    .container {
        padding: 15px;
    }

    .content {
        padding: 25px 15px;
        border-radius: 8px;
    }

    .title {
        font-size: 1.8rem;
        margin-bottom: 15px;
        letter-spacing: 1px;
    }

    .subtitle {
        font-size: 0.95rem;
    }
}

/* Dispositivos muy pequeños */
@media (max-width: 360px) {
    .title {
        font-size: 1.5rem;
    }

    .subtitle {
        font-size: 0.85rem;
    }

    .content {
        padding: 20px 12px;
    }
}
