*, *:before, *:after {
  box-sizing: border-box;
}

html, body, div, span, object, iframe, figure, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, code, em, img, small, strike, strong, sub, sup, tt, b, u, i, ol, ul, li, fieldset, form, label, table, caption, tbody, tfoot, thead, tr, th, td, main, canvas, embed, footer, header, nav, section, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: none;
  font-family: "Inter";
}

footer, header, nav, section, main {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
}

:root {
  --color-white: #fff;
  --color-light-grey: #EBEBEA;
  --color-mid-grey: #bfbfbf;
  --color-dark-grey: #2d343a;
  --color-black: #000;
  --color-green: #5A9854;
  --color-dark: #232A31;
  --color-light-green: #BBD8B8;
  --font-color-dark: var(--color-dark);
  --font-color-light: var(--color-white);
  --font-color-mid: var(--color-light-grey);
  --font-color-green: var(--color-green);
  --background-color-light: var(--color-white);
  --background-color-dark: var(--color-dark);
  --background-color-light-grey: var(--color-light-grey);
  --background-color-dark-grey: var(--color-dark-grey);
  --background-color-green: var(--color-green);
  --background-color-light-green: var(--color-light-green);
  --background-color-footer: var(--color-light-grey);
}

.text-light {
  color: var(--font-color-light);
}

.text-dark {
  color: var(--font-color-dark);
}

.text-accent {
  color: var(--font-color-green);
}

.background-light {
  background-color: var(--background-color-light);
}

.background-dark {
  background-color: var(--background-color-dark);
}

.background-grey {
  background-color: var(--background-color-dark-grey);
}

.background-green {
  background-color: var(--background-color-green);
}

.background-light-green {
  background-color: var(--background-color-light-green);
}

.background-footer {
  background-color: var(--background-color-footer);
}

.main-header {
  position: absolute;
  top: 0;
  height: 5rem;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  padding: 0 max((100% - 128rem) / 2, 5rem);
  box-sizing: border-box;
  margin: 2rem auto auto;
  transition: height 0.2s;
  z-index: 100;
}

.navigation {
  list-style-type: none;
  margin: 0;
  padding: 0;
  height: 100%;
  display: flex;
  align-items: stretch;
  gap: 5rem;
}
.navigation li {
  display: flex;
  align-items: stretch;
}
.navigation a {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 1.425rem;
  padding: 0 1rem;
  font-weight: 600;
}

section.main-header-container {
  background-image: url("/assets/bg_stars.jpg");
  background-size: contain;
  background-repeat: repeat;
  background-attachment: fixed;
  width: 100%;
  min-height: 60vh;
}

section.headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  margin-bottom: 20vh;
}

div.headline_1 {
  margin-top: 5rem;
  font-family: "Belinda";
  font-size: 8rem;
}

div.headline_2 {
  font-size: 3rem;
}

div.headline_3 {
  font-size: 10rem;
  font-weight: bold;
  color: #FCD963;
}

section.main-text-container {
  background-color: rgb(145, 166, 255);
  width: 100%;
  border: solid black;
  border-width: 0.3rem 0;
  min-height: 50vh;
  padding-bottom: 5rem;
}

div.main-text {
  background-color: antiquewhite;
  padding: 0 2rem;
  margin: -5rem calc((100% - 800px) / 2) 5rem calc((100% - 800px) / 2);
  border: 0.3rem solid black;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  font-size: 1.4rem;
  min-width: 300px;
  text-align: center;
  line-height: 1.2;
}
@media only screen and (max-width: 850px) {
  div.main-text {
    margin-left: 50px;
    margin-right: 50px;
  }
}
div.main-text iframe {
  width: 400px;
  height: 300px;
}
@media only screen and (max-width: 550px) {
  div.main-text iframe {
    width: 200px;
    height: 150px;
  }
}

div.bird {
  position: relative;
  fill: #91A6FF;
}
div.bird img {
  position: absolute;
  margin-left: -4rem;
  margin-top: 0.4rem;
  width: 3rem;
}

div.cake {
  margin-top: -8vh;
}
div.cake img {
  width: 30vw;
  max-width: 300px;
}

span.intro-text {
  margin-top: 3rem;
}

.divider {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  min-width: 10rem;
  --text-divider-gap: 1rem;
}
.divider:before, .divider:after {
  content: "";
  height: 1px;
  background-color: grey;
  flex-grow: 1;
}
.divider:before {
  margin-right: var(--text-divider-gap);
}
.divider:after {
  margin-left: var(--text-divider-gap);
}

div.outro {
  margin: 5rem 0;
  font-size: 2rem;
}
div.outro .signature {
  font-size: 5rem;
  font-family: "Belinda";
}

:root {
  --font-family-inter: "Inter-Regular", sans-serif;
  --font-family-alata: "Alata", sans-serif;
  --font-family-work-sans: "Work Sans", sans-serif;
  --font-family-belinda: "Belinda", sans-serif;
}

.font-belinda {
  font-family: "Belinda";
}

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