* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}
.hero {
  width: 100%;
  min-height: 100vh;
  background-image: linear-gradient(
      45deg,
      rgba(0, 0, 0, 0.85),
      rgba(35, 35, 36, 0.356)
    ),
    url(images/Cangrejos.jpg);
  background-position: center;
  background-size: cover;
  padding: 10px 8%;
  text-align: center;
  color: #fff;
}

nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  width: 250px;
  cursor: pointer;
}

.content {
  margin: 15% auto 0;
}
.content h1 {
  font-size: 65px;
  font-weight: 400;
}
.content h1 span {
  font-weight: 900;
}
.footer {
  background-color: black;
  padding: 20px;
  text-align: center;
}
.footer p {
  color: #fff;
}