<style>
body {
background-color: #000; /* Fondo negro */
color: #c0f; /* Texto color violeta */
font-family: 'Courier New', Courier, monospace;
margin: 0;
padding: 0;
}
.header {
background-image: url('https://static.vecteezy.com/system/resources/previews/026/481/509/large_2x/the-neon-lit-streets-of-a-cyberpunk-anime-night-city-with-this-captivating-4k-wallpaper-generated-ai-free-photo.jpg'); /* Reemplaza esta URL con tu imagen de fondo */
background-size: cover;
background-position: center;
color: #fff;
text-align: center;
padding: 60px 20px;
box-shadow: 0 4px 8px rgba(192, 0, 255, 0.2);
}
.header h1 {
margin: 0;
font-size: 3em;
text-shadow: 0 0 10px #c0f, 0 0 20px #c0f;
}
.container {
display: flex;
justify-content: center;
padding: 20px;
}
.content {
background: #111; /* Fondo negro */
padding: 20px;
border: 1px solid #c0f; /* Borde violeta */
border-radius: 8px;
width: 80%;
max-width: 600px;
box-sizing: border-box;
box-shadow: 0 4px 8px rgba(192, 0, 255, 0.2);
}
ul {
list-style-type: none;
padding: 0;
}
li {
margin: 10px 0;
padding: 10px;
background: #222; /* Fondo gris oscuro */
border: 1px solid #c0f; /* Borde violeta */
border-radius: 8px;
transition: background 0.3s;
}
li a {
text-decoration: none;
color: #c0f;
font-weight: bold;
transition: color 0.3s;
}
li a:hover {
color: #fff; /* Texto blanco */
}
li:hover {
background: #333; /* Fondo gris más oscuro */
}
.footer {
background-color: #000; /* Pie de página negro */
padding: 6px;
text-align: center;
color: #c0f;
width: 100%;
box-shadow: 0 -4px 8px rgba(192, 0, 255, 0.2);
}
.footer-buttons {
display: flex;
justify-content: space-around;
background-color: #111;
padding: 8px;
}
.footer-buttons button {
background-color: #c0f; /* Botón color violeta */
color: #000; /* Texto color negro */
padding: 10px 20px;
text-decoration: none;
border: none;
border-radius: 8px;
margin: 5px;
cursor: pointer;
transition: background 0.3s, color 0.3s;
}
.footer-buttons button:hover {
background-color: #fff; /* Fondo blanco */
color: #000; /* Texto color negro */
}
.button {
background-color: #c0f; /* Botón color violeta */
color: #000; /* Texto color negro */
padding: 10px 20px;
text-decoration: none;
border: none;
border-radius: 8px;
margin: 5px;
cursor: pointer;
transition: background 0.5s, color 0.5s;
}
.button:hover {
background-color: #fff; /* Fondo blanco */
color: #000; /* Texto color negro */
}
@media (max-width: 600px) {
.header h1 {
font-size: 2em;
}
.content {
width: 100%;
}
}
</style>