* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'open sans';
}

.contenedor {
    
    padding: 60px 0;
    width: 90%;
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
}

.titulo {
    color: #8010a1;
    font-size: 30px;
    text-align: center;
    margin-bottom: 60px;
}

header {
    width: 100%;
    height: 600px;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

nav {
    text-align: right;
    position: relative;  /* Añadido para permitir mover el menú */
    top: 80px;  /* Esto mueve el menú hacia abajo */
    padding: 0 50px 0 0;
}

nav > a{
    color:rgb(255, 255, 255);
    font-weight: 300;
    text-decoration: none;
    margin-right: 10px;
}

header .textos-header{
    display: flex;
    height: 430px;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color:rgb(32, 109, 160);
}

.textos-header h1{
    font-size: 70px;
    color:rgb(255, 0, 0);
}

.textos-header h2{
    font-size: 40px;
    color:rgb(255, 0, 0);
}

main .sobre-juego{
    padding: 30px 0 60px 0;
}
.contenedor-sobre-juego{
    display: flex;
    justify-content: space-evenly;
    box-shadow: 0 0 300px 0 rgba(0, 0, 0, .5);
}

.color-borde-texto{
    width: 48%;
    box-shadow: 0 0 300px 0 rgba(0, 0, 0, .5);
}

.sobre-juego .contenido-textos{
    width: 48%;
    box-shadow: 0 0 300px 0 rgba(0, 0, 0, .5);
}

.contenido-textos h3{
    margin-bottom: 15px;
}

.contenido-textos p{
    padding: 0px 0px 30px 15px;
    font-weight: 300;
    text-align: justify;
}

.posición-fotos{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.fotos-ultibyte{
    width: 350px;
    margin: 25px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 300px 0 rgb(0, 0, 0);
}

.fotos-ultibyte > img{
    width: 100%;
    height: 100%;
    display: block;
}

div#verde{
    background-color: #35c418;}

div#rojo{
    background-color: #ff0000;}

div#amarillo{
    background-color: #eeff00;}

div#azul{
    background-color: #0e71e2;}

.online-ultibyte{
    padding-bottom: 30px;
}


.online-contenido{
    display:flex;
    justify-content: space-between;
    align-items: center;
}

.online-centrado{
    width: 26%;
    text-align: center;
}

.online-centrado img{
    width: 115%;
}

.online-centrado h3{
    margin: 10px 0;
}

.online-centrado p{
    font-weight: 300;
    text-align: justify;
}

footer{
    background: #1d1c1c;
    padding: 60px 0 30px 0;
    margin: auto;
    overflow: hidden;
}

.contenedor-footer{
    display: flex;
    width: 90%;
    justify-content: space-evenly;
    margin: auto;
    padding-bottom: 50px;
    border-bottom: 1px solid #ccc;
}


.titulo-final{
    text-align: center;
    font-size: 24px;
    margin: -30px 0 0 0;
    color: #9d9e97;
}

@media screen and (max-width:900px){


    .contenedor-footer{
        flex-direction: column;
        border: none;
    }
}