* {
  box-sizing: border-box;
}

:root {
  --btn-color: #9381ff;
  --btn1-hover: #7678ed;
  --para-link: #6c757d;
  --highlight-color: #7371fc;
}

body {
  margin: 0;
  text-align: center;
  font-family: "Poppins", sans-serif;
  background-color: #fbfaf5;
  transition: all 0.3s ease-in;
}

a {
  text-decoration: none;
}

main {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  position: absolute;
  top: 1.4rem;
  left: 1.6rem;
  width: 4rem;
  max-width: 100%;
}

.hero-head {
  color: var(--btn-color);
  font-size: 4.6rem;
  font-weight: 700;
  text-shadow: 6px 6px black;
}

.hero-desc {
  font-size: 1.2rem;
  margin-top: -50px;
  color: var(--para-link);
  max-width: 32rem;
}

.highlight {
  color: var(--highlight-color);
  font-weight: bold;
}

.btn-group {
  display: flex;
  justify-content: space-around;
}

.btn-group > a {
  min-width: 120px;
  padding: 0.7rem 1.2rem;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.btn1 {
  background-color: var(--btn-color);
  color: white;
}

.btn2 {
  color: var(--btn-color);
  border: 3px solid var(--btn-color);
}

.btn1:hover {
  background-color: var(--btn1-hover);
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
}

.btn2:hover {
  color: white;
  background-color: var(--btn-color);
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
}

@media only screen and (max-width: 375px) {
  .hero-head {
    font-size: 3.5rem;
  }
}
