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

body {
    font-family: 'Playfair Display', serif;
    font-family: "Bebas Neue", serif;
    font-family: "Dancing Script", serif;
    background-color: #1a1a1a;
    color: #f4f4f4;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Container */
.container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Background Image */
.background-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: contain; /* Mantén la proporción completa */
    filter: grayscale(100%);
}

/* Overlay Content */
.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 1rem;
    /* background: rgba(0, 0, 0, 0.5); */ /* Comentado para mayor claridad del texto */
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8); /* Hace el texto más claro */
    width: 90%;
    max-width: 500px;
}

/* Title */
.title {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

/* Tagline */
.tagline {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: #cccccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }

    .tagline {
        font-size: 0.8rem;
    }
}
