.step1-container {
  text-align: center;
  padding: 20px;
  border-radius: 20px;
  max-width: 500vw;
}

.step1-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.step1-button {
  font-family: "Titan One", sans-serif;
  height: 25vh;
  width: 25vh;
  display: block;
  padding: 10px;
  text-align: center;
  background-color: #fff;
  border: 2px solid #8800ff;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: #000;
}

.step1-button img {
  width: auto;
  height: 7vw;
}

@media screen and (max-width: 768px) {
  .step1-button img {
    width: auto;
    height: 10vh;
  }
  .step1-button {
    height: 20vh;
    width: 20vh;
  }
  .step1-buttons {
    align-items: center;
    flex-direction: column;
  }
}

.step1-button p {
  margin: 10px 0 0;
  font-size: 2vh;
  color: #8800ff;
  text-align: center;
}

.step1-button:hover {
  transform: translateY(-5px);
}
