body {
  margin: 0;
}

.wrapper {
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  perspective: 10px;
}

header {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  transform-style: preserve-3d;
  z-index: -1;
}

.background {
  transform: translateZ(-10px) scale(2);
  background-color: skyblue;
}

.foreground {
  transform: translateZ(-5px) scale(1.5);
}

.background,
.foreground {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: -1;
}

.title {
  font-size: 7rem;
  color: white;
  text-shadow: 0 0 5px black;;
  text-align: center;
}
body {

  background-color: black;
}

p {
  margin: 20px;
}
section {
  font-size: 2rem;
  padding: 2rem;
  color: white;
}

form {
  display: inline-block;
  text-align: center;
  font-size: 1.25rem;
  background-color: rgba(8, 42, 105, 0.39);
  max-width: fit-content;
  
}

.container {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  background-color: black;
}

.field {
  width: 75%;
  padding: 0.5rem, 1rem;
  border: 3px solid grey;
  background-color: rgba(230, 230, 230, 0.8);
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.field:hover {
  background-color: white;
}

input.largerCheckbox {
  width: 1.2rem;
  height: 1.2rem;
}

.btn {
  width: 150px;
  height: 50px;
  font-size: 1.1rem;
  background-color: deepskyblue;
}

.btn:hover {
  background-color: rgb(2, 118, 156);
}
