
.box {
  background: rgb(34,32, 163);
  width: 800px;
  margin: auto;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0px 8px 24px rgb(0, 0, 0);
  margin-top: 40px;
  justify-content: center;
  text-align: center;
  transition: all 400ms ease-in-out;
  font-family:terafik;
}
@font-face {
  font-family:terafik;
  src:  url("../font/pixelboy-BTraffic.ttf") format("ttf");
  src: url("../font/pixelboy-BTraffic.woff") format("woff");
}
.box:hover {
  box-shadow: 0px 0px 20px rgb(0, 0, 0);
  transform: scale(1.01);
}

h2 {
  color: rgb(255, 217, 0);
  margin-top: 20px;
  font-family:terafik;
}

p,
div {
  font-size: 24px;
  color: #f1f1f1;
  font-family:terafik;
}

a {
  color: rgb(245, 0, 0);
  text-decoration: none;
  font-family:sina;
}

a:hover {
  text-decoration: underline;
}