body {
    font-family: Arial, sans-serif;
    background-image: url(img/bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    margin: 0;
    padding: 0;
    text-align: center;
}
header {
    position: relative;
    background-image: url(img/banner.png);
    background-position: 35%;
    background-size: 120%;
    background-repeat: no-repeat;
    padding: 160px 20px 60px;
    margin-bottom: 20px;
}

header::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.logo {
    position: absolute;
    top: 0px;        /* distancia desde la parte superior */
    transform: translateX(-50%);
    width: 434px;     /* cambia este número si quieres el logo más grande o más pequeño */
    height: auto;
    z-index: 10;
}
@media (max-width: 600px) {
    .logo { width: 50%; top: 0px; } /* más pequeño en celulares */
    header { padding-top: 100px; }
}
h1 {
    margin: 0;
    font-size: 2.5em;
}
nav {
    background-color: #130c3b;
    padding: 10px;
    margin-top: 10px;
}
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
nav li {
    display: inline;
    margin: 0 15px;
}
nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}
nav a:hover {
    color: #55ffff;
    text-decoration: underline;
}
section {
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.credits {
    background-color: #09364b;
    padding: 30px;
    border-radius: 12px;
    margin: -20px auto;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 0 15px rgba(0, 204, 255, 0.6);
}

footer {
    background-color: #5f0000;
    padding: 15px;
    margin-top: 50px;
}