* {
  margin: 0;
  padding: 0;
}

body {
  background-color: #f1f1ed;
  font-family: "Exo", sans-serif;
}

.container {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-items: center;
  align-items: center;
}
.container #rel {
  font-size: 120px;
  color: #0a0909;
}
@media screen and (max-width: 550px) {
  .container #rel {
    font-size: 55px;
  }
}
.container #calendario {
  font-size: 18px;
  color: #0a0909;
  text-align: center;
}
@media screen and (max-width: 550px) {
  .container #calendario {
    font-size: 14px;
  }
}
.container .links {
  margin-top: 80px;
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.container .links a {
  text-decoration: none;
  color: #0a0909;
  font-weight: 600;
  font-size: 32px;
  transition: 0.5s ease;
}
.container .links a:hover {
  transition: 0.5s ease;
  color: #a80000;
}

/* @include mobile {
      flex-direction: column;
      justify-content: flex-end;
    } *//*# sourceMappingURL=style.css.map */