* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  height: 100%;
  color: white;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
}

.bg-image {
  height: 100vh;
  width: 100%;
  background-image: url("http://agabobek.info/photos/photo_2024-08-06_00-17-28.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  position: fixed;
  top: 0;
  background-size: cover;
  z-index: -1;
  filter: blur(30px);
  -webkit-filter: blur(30px);
}

.model-container {
  max-width: 560px;
  background-color: black;
  margin: 0 auto;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
    rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
    rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.model-header {
  background-image: url("http://agabobek.info/photos/photo_2024-08-06_00-17-28.jpg");
  height: 560px;
  background-position: center 25%;
  background-size: cover;
  box-shadow: rgba(0, 0, 0, 1) 0px -180px 72px -84px inset;
  position: relative;
}

.model-header-text {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.model-header-text h1 {
  font-size: 2rem;
}

.model-header-text p {
  color: rgb(157, 156, 156);
  font-size: 14px;
  padding: 5px 0 0;
}

.model-header-socials {
  display: flex;
  gap: 3px;
}
.model-header-socials a img {
  width: 30px;
  height: auto;
}

.click-my-links {
  background-color: #1e1e1e;
  padding: 14px 8px;
  margin: 0 24px;
  border-radius: 1rem;
  text-align: center;
  font-size: 14px;
}

.of-photo {
  margin: 14px 0 14px 0;
  width: 100%;
  padding: 0 24px;
  position: relative;
}

.of-photo-icon {
  width: 100%;
  max-height: 330px;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: rgba(255, 255, 255, 0.936) 0px 0px 15px;
}

.absolute-text-first {
  color: #00aff0;
  position: absolute;
  font-size: 1.8rem;
  font-weight: 700;
  top: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.absolute-icon-first {
  position: absolute;
  top: 1rem;
  right: 2.5rem;
  width: 3.5rem;
}

.telegram {
  display: flex;
  justify-content: center;
}

.telegram img {
  width: auto;
  height: auto;
}

@media (max-width: 768px) {
  .model-header-text h1 {
    font-size: 1.5rem;
  }

  .model-header-text {
    width: 100%;
    bottom: 1rem;
  }
  .model-container {
    margin-top: 0.5rem;
  }

  .model-header {
    height: 50vh;
  }
}