* {
    font-family: cursive;
}



/* INICIO */




body {
    /* color al fondo */
    background: linear-gradient(to bottom, #B30000, #5A0000);
    color: grey;
    font-family: Arial, sans-serif;
}

h1 {
    color: rgb(0, 0, 0);
    /* color al h1 */
}

h2 {
    color: #F5F5F5;
    /* color al h2 */
}

p {
    color: grey;
    /* color a p del footer */
}

a {
    color: #FFD700;
    /* color a A */
}


/* centra el header y el texto al centro */

header {
    display: flex;
    justify-content: center;
    text-align: center;

}

/* NAV */


nav {
    background-color: #000;
    padding: 0.7em;

}

nav ul {
    display: flex;
    list-style: none;
    /*saca las viñetas*/
    justify-content: center;
    gap: 4em;
    padding: 6px;
}

nav ul li {
    padding: 1.5em;

}

nav a {
    color: #fff;
    font-weight: 900;
    text-decoration: none;
    padding: 1em;
}



nav a:hover {
    color: #000;
    background-color: red;
    border-radius: 5px;
}

/* imagen */

img {
    margin-top: 1.7em;
    border-radius: 2em;
}


/* MAIN */

#inicio {
    display: flex;
    justify-content: center;
    text-align: center;
    gap: 30px;
    background-image: url(./assets/foindo.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}




#historia {
    padding: 20px;
    display: flex;
    flex-direction: row-reverse;
    /* align-items: center; */
    background: #db5151;
background: linear-gradient(90deg,rgba(219, 81, 81, 1) 0%, rgba(255, 212, 212, 1) 72%);
    gap: 20px;
    font-size: 20px;
}

.parrafo {
    padding: 20px;
}

.textt{
    color: black;
}
.texttt{
    color: #F5F5F5;
}





.inicio p {
    color: white;
    font-size: 18px;
    width: 600px;
    text-align: justify;
}

aside {
    background-color: #151515;
    color: #fff;
    padding: 1.5em;
    border-radius: 8px;
}



.text {
    display: flex;
    text-align: right;
}

/* imagen del estadio */

.caja {
    display: flex;
    flex-direction: column;
    gap: 15px;
}



/* footer */
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1a1a1a;
    color: white;
    padding: 20px 50px;
    margin-top: 30px;
}

footer div {
    display: flex;
    flex-direction: column;
}

footer h4 {
    margin: 5px 0;
}

footer p {
    margin: 3px 0;
    font-family: 'Times New Roman', Times, serif;
}


footer a {
    text-decoration: none;
}




.redes {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}



/* HISTORIA */




.bordes {
    border-radius: 3px;
    border-color: 10px solid #000;
}



.titulo {
  color: #000;

}