@import "../../../css/fonts/fontSizes.css";
:root {
  --vh: 1vh;
  --animation-primary: 0.735s cubic-bezier(0.62, 0.05, 0.01, 0.99);
}

body {
  background: white;
}
body header {
  width: 100%;
  position: fixed;
  background-color: rgba(251, 52, 48, 0.9);
  box-shadow: 0 2px 10px rgba(12, 12, 12, 0.26);
  padding: 0.25rem 0;
  transform: translateY(-100%);
  pointer-events: none;
  opacity: 0%;
  visibility: hidden;
  transition: 0.3s;
  z-index: 10;
}
body header > :nth-child(1) {
  margin: 0 auto;
  width: 90%;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
}
body header > :nth-child(1) > :nth-child(1) h2 {
  color: white;
  cursor: default;
}
body header > :nth-child(1) > :nth-child(2) .link {
  position: relative;
  display: inline-flex;
}
body header > :nth-child(1) > :nth-child(2) .link .link-click {
  cursor: pointer;
}
body header > :nth-child(1) > :nth-child(2) .link .link-click a {
  text-decoration: none;
  color: white;
}
body header > :nth-child(1) > :nth-child(2) .link .link-click::before {
  content: "";
  position: absolute;
  bottom: 0em;
  left: 0;
  width: 100%;
  height: 2px;
  transform-origin: right;
  transition: transform var(--animation-primary);
  transform: scaleX(0);
}
body header > :nth-child(1) > :nth-child(2) .link .link-click:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}
body header > :nth-child(1) > :nth-child(2) .link .link-click::after,
body header > :nth-child(1) > :nth-child(2) .link .link-click::before {
  background-color: white;
}
body .editHeader {
  box-shadow: 0 2px 8px rgba(12, 12, 12, 0.26);
  transition: 0.3s;
  padding: 0rem;
}
body .headerEntry {
  transform: translateY(0%);
  pointer-events: all;
  opacity: 100%;
  visibility: visible;
  transition: 0.6s;
}

@media (max-width: 900px) {
  body header {
    box-shadow: 0 2px 8px rgba(12, 12, 12, 0.26);
  }
  body .editHeader {
    box-shadow: 0 2px 6px rgba(12, 12, 12, 0.26);
  }
}
@media (max-width: 575px) {
  body header {
    box-shadow: 0 2px 7px rgba(12, 12, 12, 0.26);
  }
  body .editHeader {
    box-shadow: 0 2px 5px rgba(12, 12, 12, 0.26);
  }
}
body main {
  margin: 0 auto;
  width: 90%;
  max-width: 1250px;
  padding-top: 13.5vh;
  transform: translateY(-5%);
  pointer-events: none;
  opacity: 0%;
  visibility: hidden;
  transition: 0.3s;
}
body .mainEntry {
  transform: translateY(0%);
  pointer-events: all;
  opacity: 100%;
  visibility: visible;
  transition: 0.9s;
}

@media (max-width: 900px) {
  body main {
    padding-top: 8vh;
  }
}
@media (max-width: 575px) {
  body main {
    padding-top: 6vh;
  }
}/*# sourceMappingURL=styles.css.map */