body {
  margin: 0;
}

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

.logo {
  width: 300px;
}

.thumbnail {
  object-fit: cover;
  width: 100px;
  height: 100px;
}

.dark-button {
  background-color: #333;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  border: 1px solid #555;
  font-family: Arial, sans-serif;
  font-size: 16px;
  display: inline-block;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.dark-button:hover {
  background-color: #555;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}