body {
    font-family: 'Arial', sans-serif;
    background: #1a1a1a;
    color: #fff;
    margin: 0;
    padding-bottom: 60px; /* Espacio para que el contenido no quede tapado por el footer */
}

.contact-section {
    background: url('https://example.com/your-background-image.jpg') no-repeat center center/cover; /* Cambia la URL por una imagen de fondo relacionada con videojuegos */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    margin: 20px;
    text-align: center;
}

h2 {
    margin-top: 0;
    color: #5ecaeb; /* Color verde brillante */
    text-shadow: 0 0 10px rgba(20, 56, 255, 0.8);
}

label {
    display: block;
    margin: 15px 0 5px;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #5ecaeb; /* Borde verde */
    border-radius: 5px;
    background: #333;
    color: #fff;
}

/* Footer fijo */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px; /* altura fija */
    background-color: rgb(0, 0, 0);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
