html {
  cursor: url("assets/achand.png"), auto;
}
*:hover {
  cursor: url("assets/achand.png"), auto;
}
*:active {
  cursor: url("assets/acactive.png"), auto;
}
@font-face {
  font-family: "acf";
  src: url("acf.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
body {
  margin: 0;
  padding: 0;
  font-family: "acf";
  color: #fff;
  background-color: black;
  font-size: 20px;
  overflow-x: hidden;
}

header {
  background-color: transparent;
  color: #fff;
  text-align: center;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
  background: rgba(146, 0, 0, 0.6);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(146, 0, 0, 0.8);
}

nav {
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  text-align: center;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  margin-bottom: 30px;
  border-bottom: 2px solid rgba(146, 0, 0, 0.3);
}

nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 45px;
  font-size: 18px;
  transition: all 0.3s ease;
  padding: 10px 15px;
  border-radius: 5px;
  display: inline-block;
}

nav a:hover {
  background-color: rgba(146, 0, 0, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.v1 {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -500;
}
.main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  min-height: calc(100vh - 80px);
}

.main h1 {
  font-size: 48px;
  text-align: center;
  margin: 40px 0 20px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  transition: all 0.3s ease;
}

.main h1:hover {
  transform: scale(1.05);
  color: rgb(220, 50, 50);
}

.main h2 {
  font-size: 36px;
  text-align: center;
  margin: 60px 0 30px 0;
  color: rgb(146, 0, 0);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

span {
  color: rgb(200, 50, 50);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

img {
  height: 250px;
  width: auto;
  border-radius: 15px;
  margin: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

img:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 16px rgba(146, 0, 0, 0.4);
}

.ac {
  margin: 20px auto;
  border-radius: 20px;
  height: 400px;
  width: 70%;
  max-width: 800px;
  object-fit: cover;
  transition: all 0.4s ease;
  filter: blur(2px);
  opacity: 0.8;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
}

.ac:hover {
  filter: blur(0px);
  opacity: 1;
  transform: scale(1.02);
  box-shadow: 0 12px 24px rgba(146, 0, 0, 0.4);
}

.ima {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 30px 0;
  padding: 20px;
  gap: 20px;
}

.ima img {
  height: 200px;
  width: 200px;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  nav a {
    margin: 0 20px;
    font-size: 16px;
  }

  .main h1 {
    font-size: 36px;
  }

  .main h2 {
    font-size: 28px;
  }

  .ac {
    width: 90%;
    height: 300px;
  }

  .ima img {
    height: 150px;
    width: 150px;
  }
}

@media screen and (max-width: 480px) {
  nav a {
    margin: 0 10px;
    font-size: 14px;
    padding: 8px 10px;
  }

  .main {
    padding: 10px;
  }

  .main h1 {
    font-size: 28px;
    margin: 20px 0 15px 0;
  }

  .main h2 {
    font-size: 24px;
    margin: 40px 0 20px 0;
  }

  .ac {
    width: 95%;
    height: 250px;
  }

  .ima {
    gap: 10px;
    padding: 10px;
  }

  .ima img {
    height: 120px;
    width: 120px;
  }
}
