* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  height: 100vh;
  background: url(./spider-man-img.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}


.hero {
  text-align: center;
  max-width: 600px;
  z-index: 2;
}

.hero h1 {
  font-size: 64px;
  color: rgb(255, 0, 0);
	background-color: rgba(128, 128, 128, 0.1);
	border-radius: 17px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.8;
}

.hero button {
  padding: 12px 30px;
  font-size: 16px;
  border: none;
  background: red;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.hero button:hover {
  background: darkred;
}


.web-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}


.web {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  opacity: 0;
  transition: 0.5s ease;
}
.web_img {
	width: 30px;
height: 30px;
	opacity: 0;
}


.top-left {
  top: 0;
  left: 0;
}

.top-right {
  top: 0;
  right: 0;
}

.bottom-left {
  bottom: 0;
  left: 0;
}

.bottom-right {
  bottom: 0;
  right: 0;
}

/* gpt yasab bergan style to'r uchun */

.web-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.dynamic-web {
  position: absolute;
  width: 150px;
  opacity: 0;
  animation: fadeIn 0.5s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
ul{
  list-style: none;
}
