* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: math;
}

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0b192c;

}

.container {
  width: 450px;
  min-height: 70vh;
  padding: 22px;
  background-color: #000000;
  text-align: center;
  color: #ff6500;
  border: 4px solid #ff6500;
  border-radius: 30px;
  box-shadow: 0px 0px 35px 4px #ff6500;
}

.container h1 {
  text-transform: uppercase;
  text-decoration: underline;
  font-size: 3.5rem;
  text-shadow: 3px 1px 5px #006aff;
  letter-spacing: 4px;
  margin: 10px 0px;
}

.container span {
  font-size: 11vh;
}

#get {
  min-height: 20vh;
  height: auto;
  width: 100%;
  border: 2px solid #ff6500;
  border-radius: 20px;
  margin: 10px 0px 30px 0px;
  color: #ff6500;
  padding: 20px 15px;
  font-size: 1.4rem;
}

button {
  height: 55px;
  width: 140px;
  background-color: #ff6500;
  color: #0b192c;
  border: none;
  outline: none;
  border-radius: 4px;
  font-weight: 800;
  font-size: 1.5rem;
  box-shadow: 0px 0px 6px 3px #ff6500;
  transition: 0.5s ease-out;
}

button:hover {
  box-shadow: none;
  border: 2px solid #ff6500;
  background-color: #0b192c;
  color: #ff6500;
  border-radius: 10px;
}

@media screen and (max-width:399px) {
  .container h1 {
    font-size: 2.5rem;
  }
}