/* ---------- RESET ---------- */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}
/* Remove default padding */
ul,
ol {
  padding: 0;
  margin: 0;
}
/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
  font-weight: 300;
}
/* Set core body defaults */
body {
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}
/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}
/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}
/* Make images easier to work with */
img {
  display: block;
}
/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}
/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}
/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
a {
  text-decoration: none;
}
/* FONTS */
@font-face {
  font-family: CartaNueva;
  src: url('../fonts/CartaNueva.woff') format('woff'), url('../fonts/CartaNueva.woff2') format('woff2');
  font-weight: 400;
}
@font-face {
  font-family: theinhardt-light;
  src: url('../fonts/theinhardt-light.woff') format('woff');
}
@font-face {
  font-family: Theinhardt-Regular;
  src: url('../fonts/Theinhardt-Regular.woff') format('woff');
}
/* STYLES */
/* centering*/
body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90vh;
  font-family: theinhardt-light;
  color: #322727;
}
/* content */
#content {
  text-align: center;
}
#content h1 {
  font-family: CartaNueva;
  font-size: 120px;
}
#content a {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 11px;
  padding: 3px 6px 2px 6px;
  border-top: solid 0.5px #322727;
  border-bottom: solid 0.5px #322727;
  color: #322727;
}
@media screen and (max-width: 700px) {
  #content h1 {
    font-size: 64px;
  }
}
