.website-templates {
  display: grid;
  grid-template-columns: auto auto;
  gap: 5rem;
  padding-top: 2rem;
  padding-bottom: 5rem;
}

.website-templates .card {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.website-template {
  cursor: pointer;
}

.website-templates .card img {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  object-position: top !important;
}

.loader {
  border: 5px solid #f3f3f3;
  border-radius: 50%;
  border-top: 5px solid #0a66c2;
  width: 50px;
  height: 50px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}

.website-templates-loader {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-weight: 100;
  font-size: 1.25rem;
  gap: 1rem;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(720deg);
  }
}

@media only screen and (max-width: 700px) {
  .website-templates {
    display: grid;
    grid-template-columns: auto;
    gap: 5rem;
    padding-top: 2rem;
    padding-bottom: 5rem;
  }
}
