@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@500&display=swap");

* {
  margin: 0;
  padding: 0;
}

html,
body {
  font-family: "Exo", sans-serif;
  overflow: hidden;
}

body {
  position: relative;
  background: #000;
}

main {
  z-index: 2;
  color: #fff;
  position: fixed;
  top: 50%;
  left: 1.6rem;
  transform: translateY(-50%);
  background-color: #0b051f40;
  padding: 10px;
  border-radius: 14px;
  box-shadow: -1px 0px 19px 1px #0b051fa1;
}

h1 {
  font-size: 2.4rem;
}

h1>span {
  font-size: 1.6rem;
}

p.checkbox {
  color: #fff;
  font-size: 1.6rem;
}

input[type="checkbox"] {
  height: 1rem;
  width: 1rem;
}

p {
  padding: 0.8rem 0 0 0;
}

.contact-mail {
  text-decoration: none;
  color: white;
  font-weight: 700;
  transition: 250ms ease;
}

.contact-mail:hover {
  padding: 5px 10px;
  border-radius: 6px;
  background: linear-gradient(to right, #354678 0%, purple 100%);
  background-size: 500px 500px;
  animation: gradientShift 2s ease infinite alternate;
}

.legal-disclaimer {
  position: fixed;
  bottom: 10px;
  color: white;
  z-index: 100;
  font-size: 12px;
  text-align: center;
  left: 1.6rem;
}

.cookies-disclaimer {
  position: fixed;
  bottom: 10px;
  color: white;
  z-index: 100;
  font-size: 12px;
  text-align: center;
  right: 10px;
}

@media (max-width: 440px) {
  .cookies-disclaimer {
    right: auto;
    left: 1.6rem;
  }

  .legal-disclaimer {
    bottom: 28px;
  }
}

@keyframes gradientShift {

  from {
    background-position: 0px;
  }
  
  to {
    background-position: -222px;
  }
}