body {
  background-color: var(--bs-gray-100);
}
.card {
  border-radius: 0px;
  border: none;
}

@media (min-width: 1400px) {
  .content {
    margin-top: 120px;
    margin-bottom: 121px;
    min-height: 315px;
  }
}

.link-atk {
  font-size: 36px;
  /* justify-content: center; */
}

@media (min-width: 720px) {
  .link-atk {
    min-height: 320px;
  }
}
#mybody {
  display: none;
}

#loader {
  position: absolute;
  left: 50%;
  top: 65%;
  z-index: 1;
  width: 120px;
  height: 120px;
  margin: -76px 0 0 -76px;
  border: 1em solid var(--bs-primary);
  border-radius: 50%;
  border-top: 16px solid #fff;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}