/* Configuración general */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #ff6f61, #ffa726);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

/* Contenedor principal */
.container {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Estilo del texto */
.content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Botón de contacto */
.contact-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    background: #e64a19;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.contact-btn:hover {
    background: #d84315;
}
