* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "B yekan";
  src: url("/static/BYekan.ttf");
}

body {
  background: linear-gradient(#000, #104);
  font-family: "B yekan", Arial, Helvetica, sans-serif;
  color: #fff;
  display: flex;
  justify-content: center;
  height: 100%;
  width: 100%;
  direction: rtl;
  flex-direction: column;
}
h1 {
  text-align: center;
  margin-bottom: 1rem;
}

.action-list {
  width: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
}

.action-item {
  /* height: 7rem; */
  width: 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0.5rem;
  border: 1px solid #ccc5;
  border-radius: 2rem;
  appearance: none;
  text-decoration: none;
  color: #ccc;
  padding: 1rem;
  background-color: #fff1;
}
.action-item:hover {
  background-color: #fff2;
}

.action-item:nth-of-type(2) {
  background-color: #0f01;
  border-color: #0f02;
}
.action-item:nth-of-type(2):hover {
  background-color: #0f02;
}
.action-item:last-of-type {
  width: 100%;
  background-color: #f001;
  border-color: #f003;
}

.action-item:last-of-type:hover {
  background-color: #f004;
}

img {
  width: 64px;
  height: 64px;
  opacity: 50%;
  margin-bottom: 0.25rem;
}
