@import url("https://fonts.googleapis.com/css?family=Roboto&display=swap");
body, html {
  margin: 0;
}

body {
  color: #333;
  background-color: #fff;
  font-family: "Roboto", sans-serif;
}

:link, :visited {
  color: inherit;
  text-decoration: none;
}
:link:hover, :visited:hover {
  color: #ff1800;
  text-decoration: underline;
}

@keyframes aparece {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.cabecera {
  padding: 32px;
  animation-name: aparece;
  animation-fill-mode: both;
  animation-delay: 0;
  animation-duration: 1s;
  animation-iteration-count: 1;
}
.cabecera h1 {
  margin: 0;
}

.cuerpo {
  padding: 32px;
}
.cuerpo .slogan {
  text-align: center;
}
.cuerpo .slogan img {
  max-width: 100%;
  height: auto;
}

.pie {
  padding: 1em;
  display: flex;
  flex-direction: column-reverse;
}
.pie > div {
  padding: 0 32px;
}
.pie p {
  margin: 2px;
}
.pie .contacto {
  animation-name: aparece;
  animation-fill-mode: both;
  animation-delay: 5s;
  animation-duration: 1s;
  animation-iteration-count: 1;
}
.pie .links {
  font-size: 24px;
  animation-name: aparece;
  animation-fill-mode: both;
  animation-delay: 5s;
  animation-duration: 1s;
  animation-iteration-count: 1;
}
.pie .links .icono {
  margin-bottom: -5px;
}
@media (min-width: 700px) {
  .pie {
    flex-direction: row;
  }
  .pie > div {
    flex-basis: 50%;
  }
  .pie .links {
    text-align: right;
  }
}

/*# sourceMappingURL=sitio.css.map */
