.layout {
  max-width: 640px;
  min-height: 100vh;
  width: auto;
  height: fit-content;
  background-color: #07539A;
  margin: auto;
  padding: 0px 32px;
}

html,body { height: 100vh; margin: 0px; padding: 0px; }


/* @media only screen and (max-width: 640px) {
  .layout  {
    width: auto;
  }
} */


.circle {
  aspect-ratio : 1 / 1;
  margin: auto;
  max-width: 180px;
  max-height: 180px;
  width: auto;

  background-color: #bbb;
  border-radius: 50%;
}

.center {
  margin: auto;
}

.rounded { 
  border-radius: 20px;
}

.shimmer {
  width: auto;
  --tw-bg-opacity: 1;
  animation : shimmer 1s infinite;
  background: linear-gradient(to right,#eff1f3 4%,#c4c4c4 25%,#eff1f3 36%);
  background-size: 400% 100%;
  /* background-color: aqua; */
}

@keyframes shimmer {
	0% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0 100%;
  }
}
