@import url("https://fonts.googleapis.com/css?family=Concert+One");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  color: #ffffff;
  background: repeating-linear-gradient(
    45deg,
    #1d212f,
    #1d212f 25px,
    #212635 25px,
    #212635 50px
  );
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.container {
  margin: 20vh auto;
  max-width: 400px;
  background: repeating-linear-gradient(
    to right,
    #1d212f,
    #1d212f 25px,
    #212635 25px,
    #212635 50px
  );
  border-radius: 10px;
  box-shadow: 0 0 20px #000;
}
h1 {
  font-family: "Concert One", sans-serif;
  text-align: center;
  border-radius: 10px 10px 0 0;
  font-size: 1.5em;
  line-height: 28px;
  padding: 20px 20px 55px 20px;
  border-bottom: 3px solid #000;
  background-color: rgba(0, 0, 0, 0.4);
  text-shadow: 0 0 15px #7cb500;
  letter-spacing: 2px;
}
#logo {
  width: 70px;
  height: 70px;
  display: block;
  position: relative;
  margin: -35px auto 0 auto;
  border-radius: 5px;
  box-shadow: 0 0 15px #7cb500;
}
.result {
  padding: 5% 10%;
  border-top: 3px solid rgba(0, 181, 136, 1);
  background-color: rgba(0, 181, 136, 0.6);
  border-radius: 0 0 10px 10px;
}
form {
  width: 100%;
  padding: 10%;
}
input {
  display: block;
  font-size: 13px;
  font-weight: bold;
  border-radius: 3px;
  height: 35px;
  width: 100%;
  padding: 10px;
  margin: 10px 0 20px 0;
  border: none;
}
button {
  height: 35px;
  width: 49%;
  margin: 2% auto;
  border: none;
  background: linear-gradient(#b5d600, #7cb500);
  border: 3px solid #b5d600;
  border-radius: 3px;
  color: #fff;
  font-weight: 600;
  text-shadow: 0.5px 0.5px 2px #000000;
}
button:hover {
  cursor: pointer;
  box-shadow: 0 0 10px #7cb500;
}
h5 {
  font-family: "Concert One", sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.5px;
}
ol {
  margin-top: 10px;
  list-style: none;
}
ol li {
  margin-bottom: 10px;
}
ol li:last-child {
  margin-bottom: 0;
}
span {
  background-color: #000000;
  font-size: 12px;
  padding: 8px;
  line-height: 10px;
  margin-right: 3px;
  margin-bottom: 8px;
  display: inline-block;
  border-radius: 4px;
  box-shadow: 0px 0px 10px #ffffff;
  font-weight: 750;
}
@media only screen and (max-width: 400px) {
  .container {
    margin: 0;
    box-shadow: none;
  }
  .container,
  h1,
  .result {
    border-radius: 0;
  }
  button {
    width: 100%;
  }
}
