@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #081b29;
    color: #ededed;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 10%;
  background: black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.logo {
  font-size: 25px;
  color: #ededed;
  text-decoration: noen;
  font-weight: 600;
}

.navbar a {
  font-size: 18px;
  color: #ededed;
  text-decoration: none;
  font-weight: 500;
  margin-left: 35px;
  transition: .3s;
}

.navbar a:hover,
.navbar a.active {
  color: darkorchid;
}

.Home {
  height: 100vh;
  background: url('#') no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 0 10%;

}

.Home-content {
  max-width: 1000px;
}

.Home-content h1 {
  font-size: 45px;
  font-weight: 700;
}

.Home-content p {
  font-size: 32px;
  margin: 10px 0 18px;
  font-weight: 700;
  color: pink;
}

.Home-content .btn-box {
  display: flex;
  justify-content: space-between;
  width: 345px;
  height: 50px;
}

.btn-box a {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 100%;
  background: purple;
  border: 2px solid purple;
  border-radius: 8px;
  font-size: 15px;
  color: black;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  z-index: 1;
  overflow: hidden;
}

.btn-box a:nth-child(2) {
  background: transparent;
  color: purple;
}

.btn-box a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: pink;
  z-index: -1;
  transition: 1.5s;
}

.btn-box a:hover::before {
  width: 100%;
}

#particles-js{
  width: 100%;
  height: 100%;
  background-image: none;
  background-position: center;
  background-size: cover;
}

.text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

q {
  color: white;
  font-family: 'Poppins' sans-serif;
  font-size: 50px;
  text-align: center;
}

o {
  color: white;
  font-family: 'Poppins' sans-serif;
  font-size: 30px;
  text-align: center;
}