@import 'particles.css';

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 50px;
  padding: 50px 0px;
  height: calc(100vh - 84px);
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 80%;
  z-index: 10000;
}

.hero-content > h1 {
  color: #fefefe;
  font-size: 42pt;
  font-weight: bolder;
}

.hero-content > p {
  font-size: 16pt;
  font-weight: 400;
  color: #eeeeee;
}

.hero-content > p > span {
  color: #706fd3;
  font-weight: 600;
}

.hero-actions {
  position: relative;
  padding-top: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 25px;
  z-index: 10000;
}

.action-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #dddddd;
  font-size: 12pt;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.12s ease-in-out;
}

.action-button:hover {
  background-color: #ffffff;
  color: #111219;
}