body {
  margin: 0;
}

.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
  background-color: #f6f6f0;
}

.loading svg {
  width: 150px;
  margin-top: 20px;
}

.loading p {
  color: #0c3136;
  margin-top: 32px;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  animation: pulse 1.5s infinite;
}

@media (min-width: 769px) {
  .loading {
    display: none;
  }
}

@keyframes pulse {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}

#reload-button {
  display: none;
  margin-top: 24px;
  padding: 12px 24px;
  background-color: #054b54;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  cursor: pointer;
  transition: background-color 0.2s;
}

#reload-button:hover {
  background-color: #0c3136;
}

#reload-button:active {
  background-color: #054b54;
}

