@import "./public/fonts/anjoman/anjoman.css";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-weight: normal;
  font-family: Anjoman;
  direction: rtl;
  background-color: #e5e5e5;
}
main {
  width: 100%;
  height: 300px;
}
.container {
  max-width: 640px;
  width: auto;
  height: 520px;
  box-shadow: 0px 0px 1px rgba(0, 82, 71, 0.05),
    0px 2px 4px rgba(0, 82, 71, 0.2);
  border-radius: 6px;
  margin: 100px auto;
  padding: 40px;
  background-color: #fff;
}
.head {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}
.head h1 {
  font-size: 24px;
  text-align: center;
}
.head h2 {
  font-size: 16px;
  text-align: center;
}
.head img {
  width: 96px;
  height: 96px;
  object-fit: contain;
}
.goLink {
  display: block;
  width: 160px;
  height: 48px;
  background-color: #204180;
  text-decoration: none;
  line-height: 48px;
  text-align: center;
  color: #fff;
  margin: 100px auto;
  border-radius: 6px;
  transition: all 300ms;
}
main a:hover {
  background-color: #00b89f;
}
footer {
  width: 100%;
  height: 56px;
  background-color: #00b89f;
  position: fixed;
  bottom: 0;
  text-align: center;
  line-height: 56px;
}
footer p {
  color: #f3f4f4;
}
footer span {
  color: #204180;
}
