:root {
  --main-color: 0, 128, 0;
  --main-dark-color: 0, 100, 0;
}

* {
  user-select: none;
  outline: none;
}

body {
  margin: 0;
  height: 100vh;
  overflow: hidden;
}

.DG8 {
  filter: grayscale(100%);
}

#img1 {
  margin: 0;
  position: fixed;
  top: 50%;
  left: 1rem;
  transform: translateY(-48.5%);
}

#img2 {
  margin: 0;
  position: fixed;
  top: 50%;
  transform: translateY(-48.5%);
  right: 1rem;
}

#background {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgb(25, 25, 25);
}

#background #background-image {
  position: fixed;
  background-position: center;
  top: 0;
  bottom: 0;
  width: 150%;
  height: 150%;
  left: -25%;
  right: -25%;
  background-image: url('../Images/BrickWallGreenScreen.png');
  background-repeat: repeat;
  transition: transform 0.5s ease-out;
  animation: breath 10s ease-in-out infinite;
}

#background::before {
  position: absolute;
  content: "";
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg,
      transparent 0%,
      transparent 50%,
      rgb(var(--main-color)) 48%,
      rgb(var(--main-color)) 52%,
      transparent 50%);
  background-size: 100% 400%;
  filter: blur(30px);
  animation: wave 75s linear infinite;
}


body:hover #cursor {
  opacity: 1;
}


#cursor {
  position: fixed;
  height: 25vh;
  width: 25vh;
  z-index: 0;
  background-color: rgba(100, 100, 100, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  filter: blur(50px);
  pointer-events: none;
  transition: opacity 500ms ease;
}

.section {
  height: 260px;
  width: 400px;
  background: hwb(6 30% 0%);
  background-size: cover;
  border: solid rgb(var(--main-color)) 2px;
  position: fixed;
  box-shadow: 0 0 25px 15px rgb(var(--main-color));
  background-color: rgb(20, 20, 20);
  top: 50%;
  left: 50%;
  margin-top: -130px;
  margin-left: -200px;
  border-radius: 25px;
  opacity: 0.95;
}

.section #background-image {
  position: absolute;
  background-position: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 25px;
  filter: grayscale(100%) brightness(25%);
  background-image: url("../Images/SectionImage.jpg");
}

form {
  display: flex;
  flex-direction: column;
  position: absolute;
  z-index: 5;
  width: 50%;
  height: 100%;
  padding-left: 25%;
  text-align: center;
  align-items: center;
}

input {
  border: solid rgb(var(--main-color)) 1px;
  pointer-events: all;
  box-shadow: 0 0 25px rgb(var(--main-color));
  transition: 0.5s;
  font-size: 0.75em;
  background-color: rgba(var(--main-dark-color), 0.5);
  border-radius: 0.25vw;
  color: gray;
}

.Text {
  color: gray;
  font-family: Bahnschrift SemiBold;
  font-size: 1em;
}

button {
  background-color: rgba(var(--main-color), 0.5);
  outline: solid rgb(var(--main-color)) 1px;
  border: 0;
  display: inline;
  pointer-events: all;
  cursor: pointer;
  box-shadow: 0 0 25px rgb(var(--main-color));
  transition: 0.15s;
  border-radius: 0.25vw;
  font-size: 0.85em;
}

a {
  font-family: Bahnschrift SemiBold;
  text-decoration: none;
  color: rgb(var(--main-color));
  margin-left: 15%;
  margin-right: 15%;
  pointer-events: all;
  transition: 0.5s;
  font-size: 0.85em;
}

@media (pointer) and (pointer: fine) {

  input:hover,
  a:hover {
    font-size: 0.85em;
    transform: rotate(-2.5deg);
  }

  a:hover {
    font-size: 1em;
  }

  button:hover {
    font-size: 1.05em;
    transform: rotate(-2.5deg);
  }
}

@media (hover: none) and (pointer: coarse) {

  input:active,
  a:active {
    font-size: 0.85em;
    transform: rotate(-2.5deg);
  }

  a:active {
    font-size: 1em;
  }

  button:active {
    font-size: 1.05em;
    transform: rotate(-2.5deg);
  }
}

input::placeholder {
  color: gray;
  opacity: 1;
}

input:-ms-input-placeholder {
  color: red;
}

input:focus {
  outline: none;
  background-color: rgb(var(--main-dark-color));
}

button:active {
  background-color: rgb(var(--main-dark-color));
}

@keyframes wave {
  0% {
    background-position: 50% 400%;
  }

  100% {
    background-position: 50% 0%;
  }
}

@keyframes breath {
  0% {
    filter: grayscale(100%) brightness(10%);
  }

  50% {
    filter: grayscale(100%) brightness(25%);
  }

  100% {
    filter: grayscale(100%) brightness(10%);
  }
}

::-webkit-scrollbar {
  width: 0px;
}