@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* HTML & Body */
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Bilder & Media */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
  text-rendering: optimizeLegibility;
  height: 100%;
  background: url("../assets/background.jpg") no-repeat center top/cover;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  height: 100vh;
  padding: 15vh 0;
}

header {
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
header img {
  height: 10vh;
  opacity: 0.85;
}
@media (min-width: 576px) {
  header img {
    height: 15vh;
  }
}

.content__area {
  width: 100%;
  max-width: 1024px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 576px) {
  .content__area {
    height: 90%;
  }
}
.content__area .logo {
  width: 100%;
  text-align: center;
}
.content__area h1 {
  font-size: 1.5rem;
  color: #333;
  font-weight: 700 !important;
  font-style: normal;
}
@media (min-width: 576px) {
  .content__area h1 {
    font-size: 2rem;
  }
}
.content__area .secondary__nav {
  display: flex;
  gap: 1rem;
}
.content__area .secondary__nav a {
  text-decoration: none;
  color: #333;
  font-size: 0.875rem;
}
@media (min-width: 576px) {
  .content__area .secondary__nav a {
    font-size: 1rem;
  }
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  height: auto;
  width: 100%;
  display: flex;
  align-items: end;
  z-index: 0;
}
footer img {
  height: 10vh;
  opacity: 0.85;
}
@media (min-width: 576px) {
  footer img {
    height: 20vh;
    left: 0;
  }
}/*# sourceMappingURL=styles.css.map */