@font-face {
  font-family: myFont;
  src: url(../fonts/Codystar-Regular.ttf);
}

* {
  padding: 0;
  margin: 0;
}

body, html {
  width: 100%;
  height: 100%;
}


header > img {
  width: 250px;
  margin-bottom: -30px;
  margin-top: 50px;
}

header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 40vh;
  margin-bottom: 50px;
  margin-top: 30px;
}

body {
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
   background: black;
   background-image: url('data:image/svg+xml,%3Csvg width="42" height="44" viewBox="0 0 42 44" xmlns="http://www.w3.org/2000/svg"%3E%3Cg id="Page-1" fill="none" fill-rule="evenodd"%3E%3Cg id="brick-wall" fill="%239C92AC" fill-opacity="0.4"%3E%3Cpath d="M0 0h42v44H0V0zm1 1h40v20H1V1zM0 23h20v20H0V23zm22 0h20v20H22V23z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
}

header > .container {
  height: 40%;
  font-family: myFont;
}




.neons {
   margin-top: 50px;
   text-align: center;
}

.neons h1 {
  font-size: 4rem;
  text-align: center;
   font-weight: bold;
  animation: glow 2s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
     from {
      color: #fff;
    text-shadow: 0 0 10px #00fff2, 0 0 20px #00fff2, 0 0 30px #00fff2, 0 0 40px #00fff2, 0 0 50px #00fff2, 0 0 60px #00fff2, 0 0 70px #00fff2, 0 0 90px #00fff2;
  }
  
  to {
     color: gray;
    text-shadow: 0 0 20px #00fff2, 0 0 30px #00fff2, 0 0 40px #00fff2, 0 0 50px #00fff2, 0 0 60px #00fff2, 0 0 70px #00fff2, 0 0 80px #00fff2, 0 1 90px #00fff2;
  }
}


.button {
  --😀: #644dff;
  --😀😀: #4836bb;
  --😀😀😀: #654dff63;
  cursor: pointer;
  width: 184px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1.125em;
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
  background: var(--😀);
  border: 2px solid var(--😀😀);
  border-radius: .75rem;
  box-shadow: 0 8px 0 var(--😀😀);
  transform: skew(-10deg);
  transition: all .1s ease;
  filter: drop-shadow(0 15px 20px var(--😀😀😀));
  margin-top: 15px;
}

.button:active {
  letter-spacing: 0px;
  transform: skew(-10deg) translateY(8px);
  box-shadow: 0 0 0 var(--😀😀😀);
}

.informations {
  height: 60vh;
  display: flex;
  flex-direction: column;
  font-family: Arial, Helvetica, sans-serif;
  margin-top: -10px;
  align-items: center;
}


.informations:nth-child(2){
  margin-top: 35px;
}

.informations > label {
  display: grid;
  color: white;
  font-size: 30px;
  text-align: center;
}

.informations input, select {
  font-size: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 10px 20px;
  text-align: center;
  margin-top: 10px;
  background-color: rgb(138, 138, 138);
}

select option {
  background-color: wheat;
}

.informations #score {
  width: 100px;
}

.informations input:focus, .informations select:focus {
  box-shadow: 0 0 5px 5px #fff, 0 0 10px 6px #f0f, 0 0 14px 9px #0ff;
}
