* {
  margin: 0;
  padding: 0;
  font-family: rale;
}

@font-face {
  font-family: rale;
  src: url(../fonts/Raleway-Regular.ttf)
}

header {
  width: 100%;
  height: 200px;
  background: rgba(250, 164, 83, 0.329);
  position: absolute;
  z-index: 100;
}

/* aquí estamos modificando el ancho */
.ancho {
  width: 80%;
  height: 200px;
  margin: auto;
}

.datos {
  float: right;
  width: 70%;
  height: 30px;
  margin: auto;
  padding-top: 7px;
  box-sizing: border-box;
}

.datos p {
  color: rgb(255, 255, 255);
  text-align: right;
  font-family: rale;
  text-shadow: 2px 2px 2px black;
}

.logo {
  width: 45%;
  height: 170px;
  /*background: blue;*/
  float: left;
  /* padding-top: 10px; */
  box-sizing: border-box;
}

.logo p a {
  color: #fff;
  font-size: 33px;
  text-decoration: none;
  /* font-weight: bold; */
  font-family: rale;
}

.logo img {
  height: 100%;
  box-sizing: border-box;
}

nav {
  width: 55%;
  height: 170px;
  /*background: olive;*/
  float: left;
  text-align: right;
  padding-top: 140px;
  box-sizing: border-box;
}

nav ul li {
  display: inline;
}

nav ul li a {
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  text-transform: uppercase;
  padding-left: 15px;
  font-weight: bold;
  letter-spacing: 1px;
  font-family: rale;
  text-shadow: 2px 2px 2px black;
}

nav ul li a:hover {
  color: #444;
}