body {
  margin: 0;
  width: 100vw;
  overflow: hidden;
  background-color: black;
}

p {
  margin-top: 50px;
  font-family: "termina", sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  color: white;
  text-align: center;
}

h1 {
  font-family: "termina", sans-serif;
  font-weight: bold;
  color: #c97d35;
  font-size: 30px;
}

h2 {
  font-family: "termina", sans-serif;
  font-weight: bold;
  color: #c86b47;
  font-size: 22px;
}

a {
  color: #c86b47;
}

ul {
  font-family: "termina", sans-serif;
  list-style-type: none;
  color: #ffffff;
  font-size: 16px;
  line-height: 26px;
  padding: 0;
  margin-top: 2rem;
}

.btn-grad {
  background-image: linear-gradient(
    to right,
    #942b04 0%,
    #c86b47 51%,
    #942b04 100%
  );
}
.btn-grad {
  margin: 10px;
  margin-top: 50px;
  padding: 15px 45px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  border-radius: 50px;
  display: block;
  font-family: "termina", sans-serif;
  font-weight: 700;
  text-decoration: none;
}

.btn-grad:hover {
  background-position: right center; /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
}

img {
  object-fit: cover;
  width: 100%;
  height: 100vh;
  object-position: center;
}

.mob {
  display: none;
}

.flex {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

#myVideo {
  /* position: fixed;
  right: 0;
  bottom: 0; */
  min-width: 100%;
  min-height: 100%;
  width: 100%;
}

.content {
  position: fixed;
  width: 100vw;
  max-width: 80%;
  margin: 0 10%;
  height: 100vh;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.logo {
  max-width: 80%;
  width: 500px;
  height: auto;
}

footer {
  position: fixed;
  bottom: 0;
  right: 0;
  padding: 5rem;
  text-align: end;
  width: 100%;
}

footer a {
  transition: ease-in-out 0.3s;
  font-family: "termina", sans-serif;
  color: #ffffff;
  font-size: 1rem;
  text-decoration: none;
}

footer a:hover {
  color: #c86b47;
}

/* Impressum */

.impressum {
  background-color: black;
  width: 80%;
  margin: 10%;
}

@media screen and (max-width: 1200px) {
  .desk {
    display: none;
  }
  .mob {
    display: block;
    height: 100vh;
  }

  footer {
    text-align: center;
    padding: 3rem 0;
  }

  #myVideo {
    transform: rotate(90deg);
    min-width: 250%;
  }
}
