html,
body {
  font-family: "DM Sans", sans-serif;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

header {
  margin: 0 auto;
  max-width: 100%;
}
header a.big {
  display: block;
  text-decoration: none;
  font-size: 300px;
  line-height: 180px;
  color: #000;
  font-weight: 900;
  text-align: center;
}
@media screen and (max-width: 768px) {
  header a.big {
    font-size: 190px;
    line-height: 120px;
    letter-spacing: -9px;
    margin-left: -8px;
  }
}

footer {
  padding: 40px;
  text-align: center;
  font-size: 20px;
}

.catamaran {
  font-family: "Catamaran", sans-serif;
}

main.article {
  width: 700px;
  max-width: 80%;
  margin: 0 auto;
}
main.article .banner-wrapper {
  position: relative;
  display: block;
  height: 300px;
}
main.article .banner-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 100% 10%;
  border-radius: 16px;
}
main.article .banner-wrapper .location-info {
  text-align: center;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
  padding: 10px 20px;
  color: #72787c;
  font-size: 13px;
}
main.article .banner-wrapper .location-info span {
  display: block;
}
main.article h1 {
  font-size: 40px;
  text-align: center;
  line-height: 40px;
  margin-bottom: 0px;
  margin-top: 50px;
}
main.article span.date {
  display: block;
  font-size: 20px;
  margin: 0 auto;
  margin-bottom: 50px;
  text-align: center;
  color: #777c80;
}
main.article p {
  color: #1a1c1f;
}
main.article blockquote {
  margin: 0;
  padding: 5px 40px;
  color: #1a1c1f;
  background-color: #eaeef1;
  border-left: 3px solid #000;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
main.article blockquote blockquote {
  padding: 0;
  border-left: none;
  font-size: 16px;
  font-style: italic;
}
main.article ul {
  list-style-type: square;
}
main.article a {
  color: #0400ff;
  text-decoration: none;
}
main.article a:hover {
  text-decoration: underline;
}
main.article abbr {
  position: relative;
  text-decoration: none;
  border-bottom: 1px dotted #000;
  cursor: help;
}
main.article abbr .tooltip {
  position: absolute;
  width: max-content;
  max-width: 400px;
  bottom: 100%;
  left: 0;
  background-color: #000;
  color: #fff;
  font-size: 13px;
  padding: 5px;
  border-radius: 5px;
  z-index: 1000;
  animation: slideIn 0.15s cubic-bezier(0.97, 0.85, 0.26, 1.27);
}
main.article abbr .tooltip a {
  color: #fff;
  text-decoration: underline;
}

@keyframes slideIn {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

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