* {
    margin: 0;
    padding: 0;
}

body {
    background-color: rgb(0, 0, 0);
}

.contenedor {
    
    padding: 60px 0;
    width: 90%;
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
}

.titulo {
    color: #e01e4e;
    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;
    padding: 30px 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: 60px;
    color:rgb(249, 253, 0);
}

main .sobre-juego{
    padding: 30px 0 60px 0;
}
.contenedor-sobre-juego{
    display: flex;
    justify-content: space-evenly;
}

.color-borde-texto{
    width: 48%;
    box-shadow: 0 0 300px 0 rgba(255, 1, 1, 0.5);
}

.sobre-juego .contenido-textos{
    width: 48%;
    box-shadow: 0 0 300px 0 rgba(1, 18, 255, 0.5);
}

.color-borde-texto2{
    width: 48%;
    box-shadow: 0 0 300px 0 rgba(248, 232, 0, 0.5);
}

.sobre-juego .contenido-textos2{
    width: 48%;
    box-shadow: 0 0 300px 0 rgba(54, 202, 9, 0.5);
}

.contenido-textos h3{
    margin-bottom: 15px;
    
    padding: 40px 0px 0px 10px;
}

.contenido-textos p{
    padding: 30px 0px 0px 10px;
    font-weight: 300;
    text-align: justify;
    margin-bottom: 15px;
}
img{
    padding: 0px 0px 0px 10px;
}

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;
    }
}
