

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 50vh; /* full screen height */
  text-align: center;
  background: rgba(0,0,0,0.5);
  padding: 20px;
  position: relative;
  font-family: 'Inter', sans-serif;
}

.hero h1 {
  font-size: 4rem;
  color: #f314ff;
  background-color: #282828;
  border: solid 1px;
  border-radius: 5px;
  margin: 0;
  padding: 10px 20px;
  position: absolute;
  top: 40%;
  box-shadow: 0 0 20px #3fff43;
  font-family: 'Inter', sans-serif;
}

.hero p {
  font-size:xx-large;
  color: #f314ff;
  background-color:#282828;
  border: solid 1px #282828;
  border-radius: 5px;
  margin-top: 20px;
  padding: 8px 16px;
  position: absolute;
  top: 70%;
  box-shadow: 0 0 12px #3fff43;
  font-family: 'Inter', sans-serif;
}

@media (max-width: 600px) {
  .hero {
    height: 75vh;
  }
  
  
  .hero p {
    top: 80%;
  }

  
}