*{
  margin: 5px;
  box-sizing: border-box;
}

body{
  height: 95vh;
  background-color: #660000;
  font-family: sans-serif;
  text-align: center;
  color: white;
  font-size: 24px;
  display: flex;
  flex-direction: column;
}

/*Esta seccion abarca el header*/

header{
  background-color: #1B1B1B;
  padding:30px;
  height: 200px;
}

.divlogo{
    height: 70%;
}

.divlogo img{
  display: inline-block;
  height: 70px;
}

.divlogo h1{
  color: #660000;
  display: inline-block;
}

nav{
  width: 100%;
}

nav div{
  text-align: center;
  font-size: large;
  font-weight: bold;
  display: inline-block;
  width: 24%;
  padding: 18px;
}

nav div:hover {
  background-color: rgb(68, 66, 66);
  height: 50px;
}

a:hover {
  background-color: rgb(68, 66, 66);
  height: 50px;
}

a:active
{
  background-color:#660000;
}

a{
  color: white;
  text-decoration: none;
}
/* Cuerpo Principal*/
.main{
  display: flex;
  flex: 1;
}

main{
  background-color: #1B1B1B;
  padding: 2em 0 3em 0;
  flex: 5 5 150px;
}

#textomain{
  font-size: 20px;
  color: white;
}

/*lateral izquierdo*/

.izquierda{
  background-color: #1B1B1B;
  padding: 3em 0 3em 0;
  flex: 1 1 100px;
}

table{
    width: 90%;
    margin: 2px auto;
}

p.titulotabla {
    position: relative;
    color: white;
    font-size: larger;
    font-weight: bolder;
    margin: 5px;
    background-color: #660000;
    padding: 5px;
    border-radius: 10px;
}

#linea img{
  height: 500px;
}

td {
    height: 100px;
    border-bottom: 2px gray solid;
}

#psp{
  height: 100px;
}

/*lateral derecho*/

.derecha{
  background-color: #1B1B1B;
  padding: 3em 0 3em 0;
  flex: 1 1 100px;
}

ul{
  list-style-type:circle;
}

footer{
  background-color: #1B1B1B;
  padding: 1em 0 1em 0;
  font-size: 20px;
}

#github{
  height: 50px;
}

@media all and (max-width: 550px){
  .main{
    flex-direction: column;
  }
  main{
    padding: 5em 0 5em 0;
  }
}