@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap");
* {
  font-family: 'Lato', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  text-transform: none;
  transition: all .2s linear;
}

html {
  font-size: 3000;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

html::-webkit-scrollbar {
  width: 1rem;
}

html::-webkit-scrollbar-track {
  background: transparent;
}

html::-webkit-scrollbar-thumb {
  background: #D1E8E4;
}

body {
  padding-left: 30rem;
  background-color: #FEF5ED;
}

section {
  padding: 3rem 5%;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: #D1E8E4;
  width: 30rem;
  height: 100%;
  padding: 3rem;
}

.header .logo {
  font-size: 2.5rem;
  color: #000000;
}

.header .logo i {
  color: #000000;
}

.header .navbar {
  padding: 20% 0;
}

.header .navbar a {
  display: block;
  font-size: 1.3rem;
  margin: 1.7rem 0;
  color: #000000;
}

.header .navbar a i {
  color: #000000;
  padding-right: .5rem;
}

.header .navbar a:hover {
  color: #000000;
}

.header .navbar a:hover i {
  padding-right: 2rem;
}

.header .share {
  text-align: left;
}

.header .share a {
  font-size: 1.8rem;
  background: #D1E8E4;
  color: #000000;
  margin: 0 .1rem;
}

.header .share a:hover {
  font-size: 2.2rem;
}

.header .impress {
  position: absolute;
  bottom: 0;
  display: flex;
  margin-bottom: 10%;
}

.header .impressum {
  text-align: center;
  color: #000000;
  font-size: 0.8rem;
  margin-right: 10%;
}

.header .impressum:hover {
  text-decoration: underline;
}

#menu-btn {
  position: fixed;
  top: 1rem;
  right: 2rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  color: #000000;
  background: #D1E8E4;
  cursor: pointer;
  text-align: center;
  z-index: 1000;
  display: none;
}

#menu-btn.fa-times {
  background: #000000;
  color: #D1E8E4;
}

.home {
  display: flex;
  align-items: center;
  flex-wrap: flex;
  gap: 2rem;
  background-color: #FEF5ED;
}

.home .content {
  width: 45rem;
}

.home .content h2 {
  color: #000000;
  font-size: 3rem;
  letter-spacing: 5px;
}

.home .content h3 {
  color: #000000;
  font-size: 2rem;
  letter-spacing: 5px;
}

@media (max-width: 1200px) {
  html {
    font-size: 75%;
  }
}

@media (max-width: 991px) {
  #menu-btn {
    display: block;
    z-index: 9999999;
  }
  .header {
    left: -110%;
  }
  .header.active {
    left: 0;
    box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.7);
    width: 35rem;
  }
  .home {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    background: #FEF5ED;
    width: 100%;
    height: 100%;
    padding: 3rem;
  }
}

@media (max-width: 450px) {
  html {
    font-size: 75%;
  }
}

