body {
  font-family: Helvetica, sans-serif;
  font-size: x-large;
  display: flex;
  justify-content: space-evenly;
  background-color: #1f2028;
  color: #e5e5e5;

  @media (max-width: 800px) {
    flex-direction: column;
  }
}

main {
  padding: 32px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

#verse-header, #proverbs-header {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  text-align: center;
}

#verse-reference, #proverbs-reference {
  font-size: 1.75rem;
  font-weight: bold;
  margin: 1rem 0;
}

#verse-text, #proverbs-text {
  font-size: 1.5rem;
  line-height: 1.8;
  margin: 1rem 0;
}

button {
  background-color: #2e2e3b;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 1rem;
}

button:hover {
  background-color: #3d3d4f;
}

#loader {
  margin: 16px auto;
  border: 5px solid #f3f3f3;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
  border-top: 5px solid #555;
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

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

.hide {
  display: none;
}