/* Reset and global styles */
* {
  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("/Ge3SvhJWsAAZSKM.jpeg");
  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 {
  position: relative;
  height: 400px;
  overflow: hidden;
}

/* Video background styling */
.background-video {
  position: center 25%;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure the video fills the header */
  z-index: -1; /* Place video behind the text */
}


/* Text on top of the video */
.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;
}

.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 a img {
  width: 100%;
  max-height: 180px;
  border-radius: 1rem;
  object-fit: cover;
}

.absolute-text-first {
  position: absolute;
  font-size: 1.8rem;
  font-weight: 600;
  bottom: 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;
}

@media (max-width: 768px) {
  /* Responsive styles */
}
