.homebutton-container {
  justify-content: flex-start;
  align-items: flex-start;
  flex: 1;
  min-height: 20vh;
}

.homebutton {
  font-family: var(--font-plain);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 300px;
  padding: 12px 20px;
  background: var(--color-yellow);
  color: var(--color-lightblack);
  text-decoration: none;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  text-align: center;
  letter-spacing: -1px;
  font-size: 22px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(102, 126, 234, 0.3);
  margin: 0 auto;
  margin-top: 40px;
}

.button-icon {
  width: 28px;
  height: 28px;
  vertical-align: middle;
}

.homebutton:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
  background: var(--color-lightpurple);
}

.homebutton:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}

.homebutton:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.3);
}

/* Tablet styles */
@media (min-width: 768px) {
  .homebutton {
    margin-top: 40px;
  }
}


/* Desktop styles */
@media (min-width: 1024px) {
.homebutton-container {
  justify-content: flex-start;
  align-items: flex-start;
  flex: 1;
  min-height: 20vh;
}
.homebutton {
  margin-top: 40px;
}
}