@font-face {
    font-family: 'AltMono';
    src: url("/media/AltMono.otf") format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'etw';
    src: url("/media/etw.ttf") format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Giarek';
    src: url("/media/giarek.ttf") format('truetype');
    font-weight: normal;
    font-style: normal;
}


body, html {
    height: 100vh;
    margin: 0;
    padding: 0;
    font-family: 'Giarek', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%), url("/media/wpxi.png");
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow-x: hidden;
}

h2 {
  display: block;
  position: absolute;
  width: 100%;
  height: 4vh;
  text-align: center;
  top: 6vh;
}
form{
  display: flex;
  flex-direction: column;
  width: 15%;
  align-items: center;
  justify-content: center;
  top: 30vh;
  position: absolute;
}

button {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  color: white;
  font-size: 1.6em;
  border: none;
  font-family: 'Giarek', sans-serif;
  padding: 10px;
  mix-blend-mode: difference;
}

p{
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
}

label{
  width: 100%;
  margin-bottom: 20px;
  font-size: 1.2em;
  font-weight: bolder;
}

input {
  width: 100%;
  height: 4vh;
  border-radius: 8px;
}

ul {
  width: 100%;
}


@media screen and (max-width: 768px) {

  body{
    height: 100vh;
    overflow-y: hidden;
    background-size: unset;
  }

  h2{
    font-size: 1.8em;
  }

  form{
    top: 16vh;
    width: 80%;
    overflow-y: scroll;
  }

  form p {
    width: 95%;
    margin: 0;
  }

  form p input {
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    margin-bottom: 5px;
  }

  form button {
    margin-top: 2vh;
    width: 40%;
  }

  #siginLink{
    top: 78vh;
    position: absolute;
  }

  span{
    font-size: 0.8em;
  }

  ul{
    font-size: 0.8em;
  }

  #content{
    padding: 0;
  }


}