* {
  box-sizing: border-box;
}
:root {
  --webhg1: #212121;
  --frames: #081b29;
  --webhg2: #292929;
  --hgblau: #3f3fff;
  --rahmen: #fdfdfd;
  --hg1: #081b29;
  --vg1: #00eeff;
}
a {
  text-decoration: none;
  color: white;
}
img {
  display: block;
}
html {
  background: var(--webhg1);
  color: beige;
}
body {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: beige;
}
.opacity-hover:hover {
  opacity: 0.8;
}
.button {
  display: inline;
  border: none;
  padding: 0.5rem 2rem;
  border-radius: 25px;
  background-color: white;
  color: #292929;
  font-size: 18px;
  cursor: pointer;
  &:hover {
    opacity: 0.9;
  }
}
nav {
  display: flex;
  justify-content: space-between;
  background-color: var(--frames);
  padding: 0 24px;
  height: 90px;
  align-items: center;
  .logo {
    width: 80px;
  }
  ul {
    display: flex;
    list-style-type: none;
    gap: 24px;
    font-size: 18px;
    font-weight: 500;
    padding: 0;
    a {
      text-decoration: none;
      /*color: #292929;*/
      color: #f3f3f3;
    }
  }
  .menu {
    width: 50px;
  }
}
.hero {
  /*background-image: url(../images/HG1.jpg");*/
  background-image: url(../img/hg_2.png);
  background-size: cover;
  height: calc(100vh - 106px);
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 70px 0 30px 30px;
  color: white;
  border-radius: 20px;
  .top {
    h1 {
      margin: 0;
      font-size: 90px;
      font-weight: 300;
      text-shadow: 0px 0px 10px black;
    }
    p {
      font-size: 1.5rem;
      padding-bottom: 30px;
      text-shadow: 0px 0px 10px black;
    }
    button {
      border: none;
      padding: 16px 60px;
      border-radius: 25px;
      background-color: white;
      color: #292929;
      font-size: 18px;
      cursor: pointer;
      a {
        color: black;
      }
      &:hover {
        opacity: 0.9;
      }
    }
  }
  .mitte {
    display: flex;
    flex-direction: row-reverse;
    form {
      display: block;
      width: 300px;
      text-align: center;
      background-color: var(--webhg1);
      padding-top: 1rem;
      margin-right: 100px;
      border-radius: 10px;
      border: #fdfdfd solid 2px;
    }
    h1 {
      background-color: var(--webhg1);
      a {
        display: block;
        width: 100%;
        height: 4rem;
        /*vertical-align: middle;*/
        /*margin-top: 1rem;*/
        color: white;
      }
    }
    input {
      width: 90%;
      height: 30px;
      margin-bottom: 0.5rem;
    }
    button {
      width: 90%;
      height: 30px;
    }
  }
  .bottom {
    display: flex;
    gap: 16px;
    img {
      height: 50px;
    }
    .wrapper {
      background-color: white;
      border-radius: 50%;
      height: 40px;
      width: 45px;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0.8;
      &:hover {
        opacity: 1;
      }
    }
  }
}
