/* Estilo base */
body {
    font-family: 'Press Start 2P', cursive;
    background-color: #000000;
    color: #000000;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Estilo del encabezado */
header {
    width: 100%;
    background: #0D0D0D;
    color: #00FF00;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em 2em;
    box-shadow: 0 0 10px #00FF00;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

header img .logo {
    height: 50px;
}

nav a {
    color: #00FF00;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.2em;
}

nav a:hover {
    text-decoration: underline;
}


/* Estilo de las secciones */
.section {
    width: 90%;
    max-width: 1200px;
    margin: 3em 0;
    text-align: center;
}

.section h2 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
}

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin-top: 30px;
}

.video-container video {
    max-width: 100%;
    max-height: 100%;
}

section{
    max-width: 800px;
    padding: 20px;
    border: 2px solid lime;
    background: #0D0D0D;
    color: #00FF00;
    font-size: 13px; 
    margin-top: 70px;
    line-height: 1.5;
}

section p{
	    color: #0ad178;
}

@media (max-width: 768px) {
    nav a {
        flex-direction: column; 
        align-items: center; 
        margin: 5px 0; 
        font-size: 14px; 
    }
    section{
        max-width: 700px;
        padding: 10px;
        border: 2px solid lime;
        background: #0D0D0D;
        color: #00FF00;
        font-size: 13px; 
        margin-top: 50px;
	line-height: 1.7;
    }
}
