@import url('https://fonts.googleapis.com/css?family=Open+Sans');

* {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
}

header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 1.5%;
  background-color: rgb(27, 26, 26);
  color: white;
  position: fixed;
  width: 100%;
  box-shadow: 0 0 15px 1px rgb(16, 24, 92);
}

ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

#container {
  background-image: url(./fondo.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
}

span {
  font-size: 80px;
  text-shadow: 10px 10px 10px rgb(0, 0, 0);
}

a {
  text-decoration: none;
  color: white;
}

section {
  padding: 20px;
}
