@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;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: black;
  color: rgb(255, 255, 255);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 10%;
  background: transparent;
  background: linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.548),
    #ba080e,
    rgba(0, 0, 0, 0.548)
  );
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  /* border-radius: 100px; */
}

.logo {
  font-size: 25px;
  color: #050605;
  text-shadow: 5px 5px 10px black;
  text-decoration: none;
  font-weight: 600;
  pointer-events: none;
  opacity: 0;
  animation: slideTop 1s ease forwards;
}

.navbar a {
  display: inline-block;
  font-size: 18px;
  color: #141313;
  text-decoration: none;
  font-weight: 500;
  margin-left: 35px;
  opacity: 0;
  animation: slideTop 0.5s ease forwards;
  animation-delay: calc(0.2s * var(--i));
}
.navbar a::after {
  content: "";
  width: 0;
  height: 2px;
  background: rgb(244, 6, 14);
  border-radius: 50%;
  position: absolute;
  left: 0;
  bottom: -3px;
  transition: 0.6s;
  box-shadow: 2px 2px 8px 2px #f50206;
}

.navbar a:hover::after {
  width: 100%;
}

.navbar a:hover {
  background: linear-gradient(45deg, rgb(14, 15, 14), rgb(249, 4, 12));
  -webkit-text-fill-color: transparent;
  background-clip: border-box;
  -webkit-background-clip: text;
}

.home {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 70px 10% 0;
}

.home-content {
  max-width: 600px;
  padding: 50px;
  /* margin-left: -30px; */
}

.home-content h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  opacity: 0;
  animation: slideRight 1s ease forwards;
  animation-delay: 0.7s;
}

.home-content h3 {
  font-size: 32px;
  font-weight: 700;
  opacity: 0;
  animation: slideLeft 1s ease forwards;
  animation-delay: 1s;
}

.mu {
  margin-top: 50px;
}

.home-content h1,
h3 {
  text-shadow: 5px 4px 10px #ce0e0e;
}

.home-content h3 span {
  color: #e71010;
}

.home-content p {
  font-size: 16px;
  margin: 20px 0 0;
  text-align: left;
  opacity: 0;
  animation: slideLeft 1s ease forwards;
  animation-delay: 1.3s;
}

.home-sci a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: black;
  border: 2px solid #cd0909;
  border-radius: 50%;
  font-size: 20px;
  color: rgb(197, 10, 10);
  text-decoration: none;
  margin: 30px 15px 30px 0;
  opacity: 0;
  animation: zoomIn 1s ease forwards;
  animation-delay: 0.4s;
}

.home-sci a:hover {
  background: rgb(190, 9, 9);
  color: black;
  box-shadow: 0 0 20px #b70306;
}

.btn-box {
  display: inline-block;
  padding: 12px 28px;
  background: #df0a0a;
  border-radius: 40px;
  font-size: 16px;
  color: black;
  letter-spacing: 1px;
  text-decoration: none;
  font-weight: 600;
  opacity: 0;
  animation: zoomIn 1s ease forwards;
  animation-delay: 0.4s;
}

.btn-box:hover {
  box-shadow: 0 0 5px rgb(204, 8, 8), 0 0 25px rgb(212, 8, 15),
    0 0 50px rgb(209, 6, 20), 0 0 100px rgb(201, 7, 7), 0 0 200px rgb(207, 5, 5);
}

.home-img {
  width: 410px;
  height: 410px;
  opacity: 0;
  animation: zoomIn 1s ease forwards, floatImage 4s ease-in-out infinite;
  animation-delay: 2.1s, 3.1s;
}

.home-img .glowing-circle {
  width: 100%;
  height: 100%;

  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-img .glowing-circle::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  background-color: rgb(9, 8, 8);
  border-radius: 50%;
}

.glowing-circle span {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgb(33, 1, 1), #e90707b7);
  border-radius: 50%;
  animation: circleRotate 5s linear infinite;
}

.glowing-circle span:nth-child(1) {
  filter: blur(10px);
}

.image img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  max-width: 350px;
  object-fit: cover;
  border-radius: 50%;
}

.glowing-circle .image {
  position: relative;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  z-index: 1;
}

.navbar-1 a {
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  margin-left: 50px;
  text-align-last: center;
}

.navbar-1 a.active,
.navbar-1 a:hover {
  background: linear-gradient(45deg, rgb(22, 22, 22), rgb(18, 18, 18));
  -webkit-text-fill-color: transparent;
  background-clip: border-box;
  -webkit-background-clip: text;
}

canvas {
  position: fixed;
  top: auto;
  left: auto;
  background-color: rgb(11, 11, 11);
  z-index: -1;
  background-size: cover;
  background-blend-mode: multiply;
  background-size: auto;
  scroll-behavior: smooth;
}

/* ---------------------------About----------------------- */

.about {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 70px 10% 0;
  margin-top: 10%;
}

.about-img img {
  padding: auto;
}

.about-content h3 {
  font-size: 32px;
  font-weight: 700;
  opacity: 0;
  animation: slideLeft 1s ease forwards;
  animation-delay: 1s;
}

.about-content p {
  font-size: 16px;
  margin: 20px 0 0;
  text-align: left;
  opacity: 0;
  animation: slideLeft 1s ease forwards;
  animation-delay: 1.3s;
}

/* Animation */
@keyframes slideTop {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideRight {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes floatImage {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }

  100% {
    transform: translate(0);
  }
}

@keyframes circleRotate {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
