[h] {
  display: none !important;
}

html,
body {
  height: 100%;
  margin: 0px;
  padding: 0px;
}

body {
  background-color: #101820;
  overflow: hidden;
  font-family: 'Vazirmatn', sans-serif;
}

.app {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100vh;
  justify-content: space-between;
  align-items: center;
}

.app .root {
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
  flex-direction: column;
}

.app .root .blob {
  position: absolute;
  width: 340px;
  height: 340px;
  background: #2e7d32;
  border-radius: 50%;
  filter: blur(150px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: blobAnimation 6s infinite ease-in-out;
  z-index: -5;
}

@keyframes blobAnimation {

  0%,
  100% {
    border-radius: 50%;
    transform: scale(1) translate(-50%, -50%);
  }

  33% {
    border-radius: 40% 60% 60% 40%;
    transform: scale(1.1) translate(-50%, -50%);
  }

  66% {
    border-radius: 60% 40% 40% 60%;
    transform: scale(0.9) translate(-50%, -50%);
  }
}

.app .root .header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  color: white;
  box-sizing: border-box;
  padding: 10px;
  padding-bottom: 0px;
  height: 35px;
  -webkit-app-region: drag;
}

.app .root .header .title {
  display: flex;
  flex-direction: row;
  gap: 10px;
  opacity: 0.37;
  font-size: 13px;
  z-index: 9999;
  user-select: none;
}


.app .root .body {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.app .root .body .loading {
  display: flex;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.app .root .body .loading .box {
  backdrop-filter: blur(100px);
  background-color: rgba(255, 255, 255, 0.07);
  width: 550px;
  height: 350px;
  border-radius: 16px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.3s width, 0.3s border-radius;
}

@media screen and (max-width: 580px) {
  .app .root .body .loading .box {
    width: 100%;
    border-radius: 1px;
  }

  .app .root .body .loading .button {
    width: 95% !important;
  }

  .app .root .body .loading .box .text h1{
    font-size: 20px !important;
  }

  .app .root .body .loading .box .text p{
    font-size: 18px !important;
  }
}

.app .root .body .loading .box img {
  width: 25%;
  min-width: 120px;
  height: auto;
  user-select: none;
  margin-bottom: 10px;
}

.app .root .body .loading .box .text {
  margin-top: 20px;
  text-align: center;
}

.app .root .body .loading .box .text h1 {
  font-family: 'minecraft', sans-serif;
  font-weight: 400;
  color: white;
  font-size: 25px;
  margin: 0px;
  margin-bottom: 5px;
}

.app .root .body .loading .box .text p {
  font-family: 'minecraftir', sans-serif;
  color: white;
  font-size: 15px;
  margin: 0px;
  margin-left: 5px;
  margin-right: 5px;
}

.app .root .body .loading .button {
  background: #4E91D9;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 0.3s border,0.3s background;
  border: 3px solid #4E91D9;
  width: 540px;
  text-align: center;
  margin-top: 10px;
  user-select: none;
}

.app .root .body .loading .button:hover {
  border-color: #4E91D9;
  background: #296fba;
}

.app .root .body .loading .button a {
  font-family: 'minecraftir', sans-serif;
  font-weight: 400;
  color: white;
  font-size: 17px;
  border: none;
  text-decoration: none;
  padding-top: 10px;
  padding-bottom: 10px;
  /* padding-left: 70px;
  padding-right: 70px; */
}

.app .root .footer {
  width: 100%;
  color: white;
  display: flex;
  justify-content: center;
  opacity: 0.22;
  font-size: 13px;
}

.app .root .footer span a {
  color: white;
}

.fade-out {
  animation: fadeOut 0.3s ease forwards;
}

.fade-in {
  animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}