@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;700&display=swap');

* {
  box-sizing: border-box;
  font-family: 'Ubuntu', sans-serif;
  font-weight: normal;
}

html, body {
  height: 100%;
}

body {
  font-size: 14px;
  margin: 0px;
  padding: 0px;
}

a {
  text-decoration: none;
  transition: all .2s;
}

main.big.message {
  background-color: #333;
  color: white;
  height: 100%; width: 100%;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
}

main.big.message h1 {
  font-size: 20px;
  line-height: 25px;
  margin: 0px;
  margin-bottom: 5px;
  max-width: 90%;
  padding: 0px 20px;
  text-transform: uppercase;
  text-align: center;
}

main.big.message p {
  font-size: 50px;
  line-height: 55px;
  font-weight: bold;
  margin: 0px;
  max-width: 90%;
  padding: 0px 20px;
  transition: opacity 1s;
  text-align: center;
}

main.big.message p.password {
  font-size: 30px;
  line-height: 35px;
}

@media (max-width: 800px) {
  main.big.message p {
    font-size: 30px;
    line-height: 35px;
  }
}

main.big.message input[type=text] {
  border: none;
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 20px;
  outline: none;
  padding: 10px;
  transition: background-color .2s;
}

main.big.message input[type=text]:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.2);
}