@font-face {
  font-family: 'own';
  src: url('fonts/own.woff2') format('woff2');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
  background: linear-gradient(135deg,
      rgba(9, 48, 23, 0.9) 0%,
      /* sehr dunkles Grün */
      rgba(66, 153, 95, 0.8) 40%,
      /* dunkles Waldgrün */
      rgba(98, 139, 118, 0.7) 100%
      /* etwas helleres Grün */
    );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'own';

  background: linear-gradient(135deg,
      rgba(9, 48, 23, 0.9) 0%,
      /* sehr dunkles Grün */
      rgba(66, 153, 95, 0.8) 40%,
      /* dunkles Waldgrün */
      rgba(98, 139, 118, 0.7) 100%
      /* etwas helleres Grün */
    );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  }

a {
  text-decoration: none;
}

h, h2 {
  color: white;
}

/* Topper */

.topper {
  height: 100vh;
  display: flex;
  gap: 7rem;
  align-items: center;
  justify-content: center;
}

.right-topper {
  display: grid;
}

.right-topper h1 {
  font-size: 100px;
  letter-spacing: 2px;
  color: white;
  margin-bottom: 15px;
}

.right-topper h2 {
  font-size: 30px;
  letter-spacing: 2px;
}

.right-topper h3 {
  font-size: 30px;
  letter-spacing: 2px;
  color: #1f7848;
}

.louis-img {
  height: 100vh;
  margin-bottom: -5px;
  align-self: flex;
}

.logo-img {
  height: 100px;
}

.socials {
  display: flex;
  gap: 20px;
}

.socials img {
  height: 35px;
  margin-bottom: 30px;
}

.louis-mobile {
  display: none;
}


/* Footer */

.footer {
  background-color: rgb(233, 233, 233);
  margin: auto;
  align-items: center;
  justify-content: center;
  text-align: center;
  display: grid;
  color: rgb(0, 0, 0);
  gap: 15px;
}

.footer hr {
  width: 250px;
  color: black !important;
}

.footer a {
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  color: rgb(0, 0, 0);
}

.copyright {
  padding-top: 50px;
  font-family: Arial, Helvetica, sans-serif;
}

.copyright p {
  font-size: 14px;
}

/* Responsive Laptop */

@media (max-width: 1366px) {
  .topper {
    gap: 1rem;
  }

  .right-topper h1 {
    font-size: 50px;
  }

  .right-topper h2,
  .right-topper h3 {
    font-size: 22px;
  }

  .socials img {
    height: 30px;
  }

  .socials img,
  .right-topper h3 {
    padding-top: 10px;
  }
}

/* Responsive Mobile */

@media (max-width: 1024px) {
  html {
    background: linear-gradient(135deg,
      rgba(9, 48, 23, 0.9) 0%,
      /* sehr dunkles Grün */
      rgba(66, 153, 95, 0.8) 40%,
      /* dunkles Waldgrün */
      rgba(98, 139, 118, 0.7) 100%
      /* etwas helleres Grün */
    );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  }
  
  html, body {
    background: linear-gradient(135deg,
      rgba(64, 119, 85, 0.9) 0%,
      /* sehr dunkles Grün */
      rgba(76, 165, 103, 0.8) 40%,
      /* dunkles Waldgrün */
      rgba(8, 32, 13, 0.7) 100%
      /* etwas helleres Grün */
    );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  }
  .topper {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .left-topper {
    display: none;
  }

  .right-topper {
    justify-items: center;
  }

  .socials {
    justify-content: center;
  }

  .louis-mobile {
    margin-top: 40px;
    height: 200px;
    display: grid;
  }
}

/* Responsive Mobile Landscape */
@media (max-height: 500px) {
  .topper {
    height: 200vh;
  }
}

/* Imprint */

.imprint {
  height: 100vh;
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
  color: white;  
}

.imprint a {
  color: white;
  text-decoration: underline;
}

h1 {
  letter-spacing: 2px;
}

p {
  font-family: Arial, Helvetica, sans-serif;
}