
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  list-style: none;
}
.header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 35px 12%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}
.logo{
  font-size: 20px;
  color: white;
  font-weight: 600;
  transition: 0.3 ease;
}
.logo:hover{
  color: skyblue;
  text-shadow: 0 0 25px #89CFF0,
               0 0 50px #89CFF0;
  transform: scale(1.1);
}
span{
  color: #89CFF0;
}
.navbar a{
  font-size: 18px;
  color: white;
  font-weight: 500;
  margin: 0 20px;
  border-bottom: 3px solid transparent;
  transition: 0.3 ease;
}
.navbar a:hover,
.navbar a.active{
  color: #89CFF0;
  border-bottom: 3px solid #89CFF0;
}
.contact{
  padding: 10px 28px;
  background-color: white;
  color: black;
  border: 2px solid transparent;
  border-radius: 8px;
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 600;
  transition: 0.3 ease;
}
.contact:hover{
  background-color: #89CFF0;
  box-shadow: 0 0 25px #89CFF0;
  color: white;
}
.home{
  width: 100%;
  min-height: 100vh;
  background: rgb(241, 241, 241);
  display: flex;
  align-items: center;
  gap: 7em;
  padding: 30px 12% 0;
}
.home-content{
  max-width: 800px;
}
.home-content h3{
  font-size: 42px;
}
.home-content h1{
  font-size: 62px;
  line-height: 1.2;
}
.home-content p{
  font-size: 18px;
  margin: 25px 0 30px;
}
.btn-box{
  width: 345px;
  display: flex;
  gap: 2em;
}
.btn-1{
  padding: 15px 28px;
  background-color: black;
  color: white;
  border: 2px solid transparent;
  border-radius: 8px;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 600;
  transition: 0.3 ease;
  cursor: pointer;
}
.btn-1:hover{
  background-color: white;
  color: black;
  border: 2px solid black;
}
.btn-2{
  padding: 15px 28px;
  background-color: black;
  color: white;
  border: 2px solid skyblue;
  border-radius: 8px;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 600;
  transition: 0.3 ease;
  cursor: pointer;
}
.btn-2:hover{
  background-color: white;
  color: black;
}
.img-box img{
  border-radius: 50%;
  width: 550px;
}
::-webkit-scrollbar{
  width: 15px;
}
::-webkit-scrollbar-thumb{
  background-color: #89CFF0;
}
::-webkit-scrollbar-track{
  background-color: rgba(0, 0, 0, 0.6);
  width: 50px;
}

.about{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12% 8%;
  gap: 10em;
  background: black;
}
.about-img img{
  position: relative;
  width: 550px;
  box-shadow: 0 0 25px skyblue,
              0 0 50px skyblue;
  border-radius: 50%;
}
.about-content h2{
  text-align: left;
  color: white;
  font-size: 42px;
}
.about-content h4{
  font-size: 62px;
  color: white;
}
.about-content p{
  color: white;
  font-size: 20px;
  margin: 2em 0 3em;
}
