.wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.5rem;
  align-items: center;
  background-color: #e6e4e4;
}

.golem-img {
  width: 100px;
}

p {
  max-width: 100ch;
}

.blogimage {
  max-width: 800px;
  width: 100%;
}

.caption {
  font-size: 0.8rem;
  color: #666;
  text-align: center;
  margin-top: 0.5rem;
  font-style: italic;
}

#sign-button {
  background-color: #4caf50; /* Green */
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  transition: all 0.1s ease;
}

#sign-button:hover {
  background-color: #45a049;
  transition: all 0.1s ease;
}

#sign-button:active {
  background-color: #3e8e41;
  transform: translateY(2px);
  transition: all 0.1s ease;
}

#sign-button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}
