.box {
  background: rgb(34,32, 163);
  max-width: 600px;
  margin: 40px auto;
  padding: 10px;
  border-radius: 15px;
  text-align: center;
  transition: all 400ms ease-in-out;
  font-family:terafik;
}

.box:hover {
  box-shadow: 0px 0px 15px rgb(0, 255, 34);
  transform: scale(1.003);

}



h2 {
  color: rgb(255, 255, 255);
  margin-top: 20px;
}

p,
div {
  font-size: 21px;
  color: rgb(255, 255, 255);
}

a {
  color: #ffffff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

button {
  padding: 10px 30px 10px 30px;
  margin: 10px;
  font-size: 18px;
  border-radius: 10px;
  background-color: rgb(255, 255, 255);
  color: black;
  cursor: pointer;
  font-family:sina;
  transition: all 500ms ease-in-out;
}

button:hover {
  background-color: rgb(0, 103, 0);
}

.result {
  margin-top: 10px;
  font-weight: bold;
  display: none;
}