* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica", "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f0f0f0;
  padding: 20px;
}

#container {
  width: 100%;
  max-width: 600px;
  min-height: 400px;
  margin: 0 auto;
  padding: 40px;
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#container > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

#container img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

#container img#loading-icon {
  width: 60px;
  height: 60px;
  animation: rotation 3s infinite linear;
}

.hidden {
  display: none !important;
}

h1 {
  font-size: 32px;
  font-weight: 700;
}

p {
  font-size: 16px;
  font-weight: 400;
}

#tryAgainLink {
  color: #2558d7;
  text-decoration: underline;
  cursor: pointer;
}
