* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
 background: #f1f6fa;
 font-family: 'Roboto', sans-serif;
 font-size: 20px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
  text-align: center;
}

/*------------HEDEAR----------*/
header {
  background: url('../images/unicornio.jpg');
  background-size: cover;
  background-position: center;
  max-height: 500px;
  width: 100%;
}

header .menu {
  text-decoration: none;
  list-style: none;
  padding: 0;
  display: inline-block;
}

header .menu a {
  margin: 20px 20px;
  color: #fbe055;
  display: inline-block;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  font-size: 1em;
}

header .menu a:hover {
  border-bottom: 2px solid #fbe055;
}

header .container-text {
  display: flex;
  justify-content: center;
  align-content: center;
  margin: 300px 0;
}

header .container-text .text {
  border: 2px solid #fbe055;
  border-radius: 5px;
  display: inline-block;
  text-align: center;
  padding: 10px 30px;
}

header .container-text .text h1 {
  font-size: 35px;
  color: #fbe055;
  margin: 0;
}

header .logo {
  width: 60px;
  position: absolute;
  display: block;
  border: 2px solid #fbe055;
  border-radius: 50%;
  margin: 10px 15px;
}

.container .text {
  line-height: 28px;
  font-size: 18px;
  text-align: justify;
}

h2 {
  text-align: center;
  }

h3 {
  padding: 4px;
}

p {
  padding: 0 20px;
}

li {
  padding: 0 25px;
}

.icon-up {
  display: none;
  color: #125171;
  font-size: 30px;
  position: fixed;
  cursor: pointer;
  bottom: 120px;
  right: 2px;
}

footer {
  background: #b7c8e8;
  width: 100%;
  padding: 20px 20px 0px 20px;
  text-align: center;
  margin: 0;
}

footer .icon {
  font-size: 50px;
  color: #125171;
  transition: .3s ease all;
  padding: 15px 10px;
}

/*--------- MEDIA QUERIES---------*/
@media (max-width: 1000px) {
  header .menu a {
    margin: 20px 5px;
  }

@media (max-width: 800px) {
  header .menu {
    position: absolute;
    text-align: left;
    flex-direction: column;
    display: flex;
    font-size: 18px;
    padding: 100px 20px;
  }

  header .menu a {
    color: #fbe055;
    font-weight: bold;
    margin: 5px 0;
  }

  header .menu a:hover {
    border-bottom: 2px solid #fbe055;
  }

  h2{
    padding: 5px;
  }

  header .container-text .text h1 {
    font-size: 20px;
  }

  header .container-text {
    margin: 360px 0;
  }
}