body {
  margin: 0px;
  padding: 0px;
  font: 14px "Roboto", Helvetica, Arial, sans-serif;
  color: #212121;
  background-color: #F9F9F9;
}

textarea:focus,
input:focus,
.button:focus{
    outline: none;
}

.header{
  color: white;
  padding: 10px;
  padding-left: 15px;
  background-color: #F44336;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
}

#skull{
  border: 4px solid white;
  margin-bottom: 25px;
  width: 200px;
  height: 200px;
  background-image: url("https://cravatar.eu/helmavatar/steve/200.png");
}

.box{
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
  background-color: #F44336;
  width: 250px;
  padding: 25px;
  color: white;
  margin-left: auto;
  margin-right: auto;
  border-radius: 2px;
  box-shadow: 0px 6px 10px #D2D2D2;
  transition: opacity 500ms;
}

.box.disabled{
  opacity: 0.5;
}

.controls{
  margin-top: 20px;
  margin-bottom: 0;
  padding-bottom: 20px;
}

.card{
  color: white;
  padding: 10px;
  margin-bottom: 10px;
  text-align: center;
  background-color: #F44336;
  box-shadow: 0px 6px 10px #D2D2D2;
  font-size: 12px;
}

h1{
  margin: 0px;
  display: inline-block;
  font-size: 28px;
  font-weight: 500;
}

.login{
  margin-bottom: 20px;
}

.submit{
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  border-radius: 2px;
  background-color: white;
  padding: 5px 10px;
  border: none;
}

input{
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
  height: 33px;
  width: 234px;
  font-size: 19px;
  border: 2px solid #E62525;
}

#warning{
  background-color: snow;
  color: black;
  padding: 10px;
  border-radius: 2px;
  margin-bottom: 16px;
  transition: height 2s;
  display: none;
}

.register{
  color: white;
  text-decoration: none;
}

.register div{
  margin-top: 20px;
}

.register:active, .register:visited{
  text-decoration: none;
}

a{
  color: white;
}

.branding{
  text-align: center;
  margin-top: 25px;
  color: black;
  padding: 20px;
}

.branding a{
  color: #F44336;
  text-decoration: none;
  font-weight: bold;
}

input[type="submit"]{
  border: 1px solid #F44336;
  background-color: white;
  border-radius: 50px;
  font-size: 15px;
  padding: 3px 10px 5px 10px;
  color: #F44336;
  margin-left: auto;
  cursor: pointer;
  font-size: 18px;
  transition: background-color 0.25s, color 0.25s;
  height: 31px;
  width: 100px;
}

input[type="range"]{
  border: none;
  background: linear-gradient(to right, white 0%, white 100%);
  -webkit-appearance: none;
  height: 3px;
}

input::-webkit-slider-thumb {
  cursor: pointer;
  -webkit-appearance: none;
  width: 15px;
  height: 15px;
  background: white;
  position: relative;
  z-index: 5;
  border-radius: 50%;
  transition: box-shadow 0.5s;
}

input::-webkit-slider-thumb:active{
  box-shadow: 0px 0px 0px 8px rgba(256, 256, 256, 0.3);
}

.controls div{
  margin-bottom: 10px;
}

.ping-display {
  color: #848484;
  display: block;
  font-size: 90%;
}

.login-deprecated {
  background-color: #F44336;
  height: 100vh;
  display: flex;
  justify-content: center;
  text-align: center;
  color: white;
}

.login-deprecated div {
  align-self: center;
  width: 70%;
  max-width: 500px;
}

.login-deprecated p:nth-of-type(1) {
  font-size: 20px;
}

.login-deprecated p:nth-of-type(2) {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000000eb;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
}

#overlay h1 {
  font-family: Roboto;
  font-size: 50px;
  color: white;
}

#overlay p {
  padding-top: 20px;
  font-family: Roboto;
  color: white;
  font-size: 20px;
  margin: 0;
}

@media(min-width: 500px) {
  .login-deprecated p:nth-of-type(1) {
    font-size: 25px;
  }

  .login-deprecated p:nth-of-type(2) {
    font-size: 20px;
  }
}
