/*

color(display-p3 0.2667 0.4471 0.7686) dunkelblau #4472C4
color(display-p3 0.0588 0.5765 0.9922) hellblau #0F93FD
dunkelgrau #191919

*/


/* ---- Titel ---- */

/* Phone (0px - 575px) */


/* Tablets (576px - 991px) */

@media screen and (min-width: 576px) {

}


/* Desktops (992px+) */

@media screen and (min-width: 992px) {

}

/* --------- */



/* ---- General Stuff ---- */

/* Phone (0px - 575px) */

@font-face {
  font-family: 'Ofelia Text';
  src: url('../../3-fonts/OfeliaText-Light.woff2') format('woff2'),
      url('../../3-fonts/OfeliaText-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Ofelia Text';
  src: url('../../3-fonts/OfeliaText-Regular.woff2') format('woff2'),
      url('../../3-fonts/OfeliaText-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Ofelia Text';
  src: url('../../3-fonts/OfeliaText-Medium.woff2') format('woff2'),
      url('../../3-fonts/OfeliaText-Regular.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Ofelia Text';
  src: url('../../3-fonts/OfeliaText-Semibold.woff2') format('woff2'),
      url('../../3-fonts/OfeliaText-Semibold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Ofelia Text';
  src: url('../../3-fonts/OfeliaText-Bold.woff2') format('woff2'),
      url('../../3-fonts/OfeliaText-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

html {
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: color(display-p3 0.0588 0.5765 0.9922) #f2f2f2;
}

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

body {
  margin: 0;
  padding: 0;
  font-family: 'Ofelia Text', sans-serif;
  font-weight: 400;
  font-style: normal;
  overflow-x: hidden;
  overflow-y: scroll;
}

img {
  pointer-events: none;
  user-select: none;
}

.page-loading {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: all 1s ease;
}

body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  background-color: #f2f2f2;
}

body::-webkit-scrollbar-thumb {
  background-color: color(display-p3 0.0588 0.5765 0.9922);
}

.scrollbar-color-changed::-webkit-scrollbar-track {
  background-color: #191919;
}

/* --------- */


/* ----- Common Stuff ----- */

/* Phone (0px - 575px) */

.headline {
  font-size: 20px;
  font-weight: 700;
  color: color(display-p3 0.0588 0.5765 0.9922);
  text-align: center;
  line-height: 29px;
  padding-bottom: 50px;
  margin: 0px 25px;
}

/* Tablets (576px - 991px) */

@media screen and (min-width: 576px) {

}


/* Desktops (992px+) */

@media screen and (min-width: 992px) {
  .headline {
    font-size: 25px;
  }
}

/* --------- */


/* ---- Under Construction ---- */

/* Phone (0px - 575px) */

.construction {
  width: 100vw;
  height: fit-content;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
  padding-bottom: 105px;
}

.construction img {
  width: 100vw;
  max-width: 500px;
  padding: 0px 50px;
  margin-bottom: 50px;
}

.info-text {
  width: 100%;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 50px;
  text-align: center;
  line-height: 22px;
}

.link-back {
  position: relative;
  height: 70px;
  min-height: 70px;
  max-width: 425px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: color(display-p3 0.0588 0.5765 0.9922);
  border-radius: 100px;
  padding: 0px 95px;
  margin: 0px 25px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  border: 3px solid color(display-p3 0.0588 0.5765 0.9922);
  transition: box-shadow 0.5s ease;
}

.link-back::before {
  position: absolute;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: color(display-p3 0.0588 0.5765 0.9922);
  border-radius: 50%;
  padding: 25px;
  content: "❮";
  left: -3px;
  top: -3;
  border: 3px solid color(display-p3 0.0588 0.5765 0.9922);
  background-color: #fff;
  color: color(display-p3 0.0588 0.5765 0.9922);
  font-size: 30px;
}

@media (hover:hover) {

  .link-back::before {
    left: calc(100% - 67px);
    transition: left 0.5s ease;
  }

  .link-back:hover::before{
    transform: translateX(0%);
    left: -3px;
  }
}


/* Tablets (576px - 991px) */

@media screen and (min-width: 576px) {

}


/* Desktops (992px+) */

@media screen and (min-width: 992px) {
  .info-text {
      font-size: 16.5px;
      margin-bottom: 50px;
  }

  .link-back {
      font-size: 16.5px;
  }

  .construction {
    padding: 50px;
  }
}

/* --------- */


/* ---- Links ---- */

/* Phone (0px - 575px) */

.links {
  width: 100%;
  position: fixed;
  bottom: 0;
  background-color: #fff;
}

.links-container {
  width: 100%;
  max-width: 1440px;
  padding: 0px 25px;
  margin: 0px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.links-container a {
  color: #191919;
  font-size: 15px;
  font-weight: 300;
  line-height: 22px;
  padding: 10px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.links-container a:hover {
  color: color(display-p3 0.0588 0.5765 0.9922);
}

/* Tablets (576px - 991px) */

@media screen and (min-width: 576px) {

}


/* Desktops (992px+) */

@media screen and (min-width: 992px) {

}

/* --------- */