@charset "UTF-8";
:root {
  --padding: 2rem;
  --pink: #f1bfb7;
}

@font-face {
  font-family: "Lusitana";
  font-style: normal;
  font-weight: normal;
  src: url(../fonts/Lusitana-Regular.ttf) format("truetype");
}
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  scroll-behavior: smooth;
  font-size: 1.4vw;
  height: 100%;
}

body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  font-family: "Lusitana", serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.2;
}

header {
  font-size: 1.4rem;
}
header h1 {
  margin-top: -0.08em;
}

main {
  width: 100%;
}

section {
  padding: 4rem 1rem 5.25rem;
  width: 100%;
}

em {
  display: block;
  font-style: normal;
  text-decoration: underline;
  text-underline-offset: 0.1em;
}

.margin {
  max-width: 35rem;
  margin-left: auto;
  margin-right: auto;
}

footer {
  width: 100%;
  height: 100dvh;
  padding: 1.5rem 1.5rem 1.25rem;
}

#footer-links a {
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 0.1em;
}

a {
  color: inherit;
  text-decoration: none;
  text-underline-offset: 0.1em;
}
a:hover {
  text-decoration: underline;
}

.underline {
  text-decoration: underline;
  text-underline-offset: 0.1em;
}

h1, h2, h3, h4, h5 {
  font-size: inherit;
  font-weight: inherit;
  margin-block-start: 0;
  margin-block-end: 0;
}

ul {
  margin-block-start: 0;
  margin-block-end: 0;
  padding-inline-start: 0;
  list-style: none;
}

ol {
  margin-block-start: 0;
  margin-block-end: 0;
}

p {
  margin-block-start: 0;
  margin-block-end: 0;
}

.d-b {
  display: block;
}

.d-i-b {
  display: block;
}

.d-f {
  display: flex;
  flex-wrap: wrap;
}

.d-f-c {
  flex-direction: column;
}

.j-s-b {
  justify-content: space-between;
}

.j-c {
  justify-content: center;
}

.a-b {
  align-items: baseline;
}

.a-s {
  align-items: flex-start;
}

.a-c {
  align-items: center;
}

.t-a-r {
  text-align: right;
}

.caps {
  text-transform: uppercase;
}

.p-r {
  position: relative;
}

.m-t-a {
  margin-top: auto;
}

.m-l-a {
  margin-left: auto;
}

.sticky {
  position: sticky;
  top: 0;
}

.pink {
  color: var(--pink);
}

.bg-pink {
  background-color: var(--pink);
}

.invert {
  color: white;
}

.w-100 {
  width: 100%;
}

.t-c {
  text-align: center;
}

.absolute {
  position: absolute;
}

h3 {
  text-decoration: underline;
  margin-bottom: 1.2em;
  text-transform: uppercase;
  text-underline-offset: 0.1em;
}

p + h3 {
  margin-top: 2.4em;
}

#hero {
  height: 100dvh;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  min-height: 35rem;
}
#hero svg {
  width: 2.5rem;
}

#hero img {
  width: 49rem;
  margin-top: -2rem;
}

#rule {
  width: 17rem;
  background-color: black;
  height: 1px;
  transform: rotate(-7.5deg);
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
}

p + p {
  margin-top: 1.2em;
}

#board-members {
  margin-bottom: 2.4em;
  margin-top: 0.5em;
}

main {
  position: relative;
}

#countdown-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  height: calc(100% + 16rem);
  padding: 1.5rem;
}

#countdown {
  position: sticky;
  top: 1.5rem;
}
#countdown span:first-of-type {
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 0.1em;
}

#countdown-mobile span:first-of-type {
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 0.1em;
}

#newsletter-button {
  transform: rotate(-90deg);
  transform-origin: top right;
  position: absolute;
  right: -1rem;
  top: 37dvh;
  transition: right 1s ease;
  opacity: 0;
}
#newsletter-button a {
  padding: 0.4em 1.5em;
}

.loaded #newsletter-button {
  opacity: 1;
  right: 1.6rem;
}

.board-member {
  width: 31%;
}
.board-member img {
  width: 100%;
  margin-bottom: 0.1em;
}

.button-vacancies {
  transition: opacity 0.5s;
}
.button-vacancies.inactive {
  opacity: 0;
}

#board h3 {
  text-align: center;
}
#board h4 {
  text-align: center;
  text-decoration: underline;
  text-transform: uppercase;
  text-underline-offset: 0.1em;
  margin-top: 2.4em;
}
#board h5 {
  margin-top: 1.2em;
  text-decoration: underline;
  text-underline-offset: 0.1em;
}
#board li:before {
  content: "– ";
}
#board ul + p {
  margin-top: 1.2em;
}

@media (min-aspect-ratio: 800/1000) {
  .hide-desktop {
    display: none;
  }
}
@media (max-aspect-ratio: 800/1000) {
  html, body {
    font-size: 4vw;
  }
  .hide-mobile {
    display: none;
  }
  #hero img {
    width: 100%;
    margin-top: auto;
    margin-bottom: -1rem;
  }
  #countdown-wrapper-mobile {
    text-align: center;
    margin-top: auto;
    margin-bottom: 2rem;
  }
}

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