@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Stencil+Display:wght@100..900&family=Orbitron:wght@400..900&display=swap');
body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}

:root {
  --neon-purple: #B026FF;
  --electric-blue: #0096FF;
  --midnight-black: #121212;
  --starlight-silver: #E0E0E0;
  --neon-yellow: #CCFF00;
  --hot-pink: #FF69B4;
}

body {
  background-color: rgb(0, 2, 5);
  font-family: "Big Shoulders Stencil Display", sans-serif;
  color: white;
  font-size: 1rem;
  padding-top: 5vh;
}

body:before {
  content: ' ';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  background-color: rgb(0, 2, 5);
  background-image: url('../images/2e4a23d9-edab-456c-a3c5-700f52ad469f.png');
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

* {
  box-sizing: border-box;
  text-transform: uppercase;
  font-family: "Big Shoulders Stencil Display", sans-serif;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: bolder;
  margin-bottom: 2rem;
}

header h1 {
  font-family: Squartiqa4FStripes, "Orbitron", sans-serif;
  font-weight: 400;
  order: 2;
  margin: 0;
  font-size: clamp(32px, 15vw, 175px);
  color: var(--neon-purple);
  text-align: center;
  text-wrap: balance;
}

header p {
  order: 1;
  font-size: 1.5rem;
  color: var(--hot-pink);
  text-align: center;
  text-wrap: balance;

}

header h2 {
  order: 3;
  font-family: "Orbitron", sans-serif;
  color: var(--hot-pink);
  text-align: center;
  text-wrap: balance;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

input {
  padding: 1.4rem 1rem;
  border-radius: 4px;
  border: 1px solid rgb(53, 53, 53);
  background: transparent;
  color: white;
  width: 90vw;
  max-width: 22rem;
  font-size: 1.2rem;
  border-radius: 10px 10px 0 0;
  text-align: center;
  background: black;
  letter-spacing: 1px;
}

form button {
  padding: 1rem;
  border-radius: 4px;
  border: none;
  background: rgb(17, 24, 39);
  color: white;
  cursor: pointer;
  width: 90vw;
  max-width: 22rem;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgb(53, 53, 53);
  border-radius: 0 0 10px 10px;
  border-top: none;
  transition: .2s;
  letter-spacing: 1px;
}

main p{
  padding-bottom: 2rem;
}

form button:hover {
  background: rgb(9, 17, 35);
}

button svg {
  transform: scale(.75);
  opacity: .5;
}

.dialog .container {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  bottom: 0;
  transition: opacity 0.55s cubic-bezier(0.25, 0.8, 0.25, 1), width 0s linear;
  transition-delay: 0s, 0.55s;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.dialog .container .shield {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(14, 10, 36, .75);
}
.dialog .container .content {
  background-color: rgb(8, 8, 8);
  padding: 30px;
  max-width: 600px;
  width: 90vw;
  margin: 30px;
  min-height: 25vh;
  max-height: 90vh;
  position: relative;
  transform: scale(0);
  box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 13px 19px 2px rgba(0, 0, 0, 0.14), 0px 5px 24px 4px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  transition: transform 0.4s ease;
}
.dialog .container .close {
  position: absolute;
  right: 8px;
  top: 8px;
}
.dialog .container .close label {
  cursor: pointer;
}
.dialog input[type=checkbox]:checked + .container {
  opacity: 1;
  width: 100%;
  transition-delay: 0s, 0s;
}
.dialog input[type=checkbox]:checked + .container .content {
  transform: scale(1);
}
.dialog input.dialog-toggle {
  display: none;
}
.open {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid currentColor;
  border-radius: 2px;
  padding: 1.4rem;
  text-transform: uppercase;
  margin: 8px;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.open svg {
  margin-left: 8px;
  transition: margin-left 0.2s;
}

.open:hover {
  background: rgb(9, 17, 35);
}

.open:hover svg {
  margin-left: 12px;
}

.dialog input,
.dialog button {
  border-radius: 10px;
  border-top: 1px solid rgb(53, 53, 53);
}

.dialog form {
  display: flex;
  gap: 1rem;
}
