* {
  margin: 0px;
  padding: 0px;
}
body {
  padding: 6px;
  /*margin: 4px solid green;*/
  font-family: Arial, Helvetica, sans-serif;
  background: #000000;
}
header {
  height: 150px;
  background: #000000;
  color: #ffffff;
  text-align: center;
  margin-bottom: 5px;
  border-bottom: 5px dashed #DF0101;
}
header h1 {
  line-height: 150px;
  font-family: 'Metal Mania', cursive;
  text-transform: uppercase;
  font-size: 70px;
  letter-spacing: 5px;
}
nav {
  height: 40px;
  padding: 6px;
}
nav ul li {
  float: right;
  padding: 8px;
  list-style: none;
}
nav ul li a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 900;
  padding: 6px;
  border-radius: 20px;
  background: black;
  color: white;
  border: 3px solid grey;
}
nav ul li a:hover {
  background: #BDBDBD;
  color: #000000;
  border: 3px solid #DF0101;
}
#contenedor {
  width: 70%;
  margin: auto;
  padding: 50px 0px;
}
img {
  width: 100%;
  border-radius: 5px
}
p {
  color: white;
  font-size: 40px;
  text-align: center;
  padding-bottom: 15px;
  font-family: 'Kreon', serif;
  /*word-spacing: 5px;*/
  letter-spacing: 2px;
}