/* playfair-display-regular - latin */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  src: local(''),
       url('../fonts/playfair-display-v30-latin-regular.woff2') format('woff2')
}

/* playfair-display-900 - latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: local(''),
       url('css/fonts/inter-v18-latin-regular.woff2') format('woff2')
}

/* Teko 700 */
@font-face {
  font-family: 'Teko';
  font-style: normal;
  font-weight: 700;
  src: local(''),
       url('css/fonts/teko-v20-latin-700.woff2') format('woff2')
}

/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box; }
.column,
.columns {
  width: 100%;
  float: left;
  box-sizing: border-box; }

/* For devices larger than 400px */
@media (min-width: 400px) {
  .container {
    width: 85%;
    padding: 0; }
}

/* For devices larger than 550px */
@media (min-width: 550px) {
  .container {
    width: 80%; }
  .column,
  .columns {
    margin-left: 4%; }
  .column:first-child,
  .columns:first-child {
    margin-left: 0; }

  .one.column,
  .one.columns                    { width: 4.66666666667%; }
  .two.columns                    { width: 13.3333333333%; }
  .three.columns                  { width: 22%;            }
  .four.columns                   { width: 30.6666666667%; }
  .five.columns                   { width: 39.3333333333%; }
  .six.columns                    { width: 48%;            }
  .seven.columns                  { width: 56.6666666667%; }
  .eight.columns                  { width: 65.3333333333%; }
  .nine.columns                   { width: 74.0%;          }
  .ten.columns                    { width: 82.6666666667%; }
  .eleven.columns                 { width: 91.3333333333%; }
  .twelve.columns                 { width: 100%; margin-left: 0; }

  .one-third.column               { width: 30.6666666667%; }
  .two-thirds.column              { width: 65.3333333333%; }

  .one-half.column                { width: 48%; }

  /* Offsets */
  .offset-by-one.column,
  .offset-by-one.columns          { margin-left: 8.66666666667%; }
  .offset-by-two.column,
  .offset-by-two.columns          { margin-left: 17.3333333333%; }
  .offset-by-three.column,
  .offset-by-three.columns        { margin-left: 26%;            }
  .offset-by-four.column,
  .offset-by-four.columns         { margin-left: 34.6666666667%; }
  .offset-by-five.column,
  .offset-by-five.columns         { margin-left: 43.3333333333%; }
  .offset-by-six.column,
  .offset-by-six.columns          { margin-left: 52%;            }
  .offset-by-seven.column,
  .offset-by-seven.columns        { margin-left: 60.6666666667%; }
  .offset-by-eight.column,
  .offset-by-eight.columns        { margin-left: 69.3333333333%; }
  .offset-by-nine.column,
  .offset-by-nine.columns         { margin-left: 78.0%;          }
  .offset-by-ten.column,
  .offset-by-ten.columns          { margin-left: 86.6666666667%; }
  .offset-by-eleven.column,
  .offset-by-eleven.columns       { margin-left: 95.3333333333%; }

  .offset-by-one-third.column,
  .offset-by-one-third.columns    { margin-left: 34.6666666667%; }
  .offset-by-two-thirds.column,
  .offset-by-two-thirds.columns   { margin-left: 69.3333333333%; }

  .offset-by-one-half.column,
  .offset-by-one-half.columns     { margin-left: 52%; }

}


/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */

body {  
  font-size: 1em; /* currently ems cause chrome bug misinterpreting rems on body element */
  line-height: 1.6;
  font-weight: 400;
  font-family: 'Inter', "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: rgba(7, 21, 35, 1);
  background-color: #eff5f8;
  background-image: url('img/nnnoise.svg');
  background-repeat: repeat;
  display: flex;
  align-items: center;
  overflow:hidden; 
  place-content: center;
  font-display: auto;
}


@keyframes fadeInUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}

@keyframes fadeInDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}

.fadeInUp-animation {
  opacity:0;
  animation: 1.5s fadeInUp;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
}

.fadeInDown-animation {
  animation: 1.5s fadeInDown;
}


.container{
  display: flex;
  justify-content: center;
  align-items: center;
  height:100vh;
}


#servus{
    font-family: 'Teko';
    font-weight: 700;
    font-size: 1.4em;
    font-display: block;
    line-height: 0.8em;
    letter-spacing: 2%;
    color:#071523; 
    text-transform: uppercase;
}


.intro{
    text-align: center;
    z-index: 1;
  }

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.external-link{
  position: relative;
  display:inline-block;
  color:#000;
  padding: 0 1px;
  transition: color ease 0.3s;
}


.external-link{
  color:#000;
  opacity: 0.5;
}


.gradient {
  z-index: -1;
  --size: 800px;
  --speed: 20s;
  --easing: cubic-bezier(0.8, 0.2, 0.2, 0.8);
  width: var(--size);
  height: var(--size);
  filter: blur(calc(var(--size) / 15));
  background-image: linear-gradient(#4377ef, #02B886);
  opacity: 0.6;
  animation: rotate 20s linear alternate infinite;
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  position:absolute;
}


@media (max-width: 720px) {
  .gradient {
    --size: 400px;
  }
}

@media (prefers-color-scheme: dark) {
  body {
    color: rgba(255, 255, 255, 0.8);
    background-color: #071523;
  }
  #servus{
    font-family: 'Teko';
    color:#fff;
  }
  .gradient{
    background-image: linear-gradient(#01 284D, #02B886); 
    opacity: 0.6;
  }

  .external-link{
   color:#fff;
  }

  .external-link:hover{
   color:#fff;
   opacity: 0.5;
  }

}



/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1, h2, h3 {
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 300;
  color:#1f383f; }
h1 { font-size: 2.75em; line-height: 1.2;  letter-spacing: 0.01em;}
h2 { font-size: 3.6rem; line-height: 1.25; letter-spacing: -.1rem; }
h3 { font-size: 3.0rem; line-height: 1.3;  letter-spacing: -.1rem; }


/* Larger than phablet */
@media (min-width: 550px) {
  h1 { font-size: 5.0rem; }
  h2 { font-size: 4.2rem; }
  h3 { font-size: 3.6rem; }

}
@media (max-width: 400px) {
  h1 {font-size: 2.5em;}
  h2 {font-size: 2.0em;}
}

p {
  margin-top: 0; 
}


/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
  color: #1f383f;
  text-decoration: none; 
}
a:hover {
  color: #1f383f;
/*  transform:scale(1.2); */
}


/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
input[type="submit"],
  input[type="reset"],
  input[type="button"],
  button,
  .button {
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
    -moz-transition: border-color 0.2s ease;
    -webkit-transition: border-color 0.2s ease;
    -ms-transition: border-color 0.2s ease;
    transition: border-color 0.2s ease;
    background-color: #1f383f;
    border-radius: 3em;
    color: #fff !important;
    cursor: pointer;
    display: inline-block;
    font-size: 0.6em;
    font-weight: bold;
    height: calc(4.75em + 2px);
    letter-spacing: 0.25em;
    line-height: 4.75em;
    outline: 0;
    padding: 0 3.75em;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    margin-top:2em;
  }

  input[type="submit"]:after,
  input[type="reset"]:after,
  input[type="button"]:after,
  button:after,
  .button:after {
    -moz-transform: scale(0.25);
    -webkit-transform: scale(0.25);
    -ms-transform: scale(0.25);
    transform: scale(0.25);
    -moz-pointer-events: none;
    -webkit-pointer-events: none;
    -ms-pointer-events: none;
    pointer-events: none;
    -moz-transition: opacity 0.2s ease, -moz-transform 0.2s ease;
    -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
    -ms-transition: opacity 0.2s ease, -ms-transform 0.2s ease;
    transition: opacity 0.2s ease, transform 0.2s ease;
    background: #ffffff;
    border-radius: 3em;
    content: '';
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 100%;
  }


  input[type="submit"]:hover,
  input[type="reset"]:hover,
  input[type="button"]:hover,
  button:hover,
  .button:hover {
    border-color: transparent !important;
  }

    input[type="submit"]:hover:after,
    input[type="reset"]:hover:after,
    input[type="button"]:hover:after,
    button:hover:after,
    .button:hover:after {
      opacity: 0.2;
      -moz-transform: scale(1);
      -webkit-transform: scale(1);
      -ms-transform: scale(1);
      transform: scale(1);
    }

    input[type="submit"]:hover:active,
    input[type="reset"]:hover:active,
    input[type="button"]:hover:active,
    button:hover:active,
    .button:hover:active {
      border-color: #ffffff !important;
    }

      input[type="submit"]:hover:active:after,
      input[type="reset"]:hover:active:after,
      input[type="button"]:hover:active:after,
      button:hover:active:after,
      .button:hover:active:after {
        opacity: 0.1;
      }


/* Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.u-full-width {
  width: 100%;
  box-sizing: border-box; }
.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box; }
.u-pull-right {
  float: right; }
.u-pull-left {
  float: left; }


/* Clearing
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Self Clearing Goodness */
.container:after,
.row:after,
.u-cf {
  content: "";
  display: table;
  clear: both; }
