/* General styling */
body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: Arial, sans-serif;
    overflow: hidden;
  }
  
  #background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2; /* Behind everything */
  }
  
  .rain-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1; /* Above the video, behind content */
  }
  
  .rain-drop {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    animation: fall linear infinite;
  }
  
  @keyframes fall {
    0% {
      transform: translateY(-100%);
      opacity: 1;
    }
    100% {
      transform: translateY(100vh);
      opacity: 0;
    }
  }
  
  /* Tilt Box Styling */
  .tilt-box {
    width: 650px;
    height: 250px;
    background: linear-gradient(45deg, #000000, #303030);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    color: rgb(37, 37, 37);
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0.85;  /* Custom opacity */
    outline: 3px solid #2e2e2e;  /* White outline */
    position: relative;
    z-index: 1; /* Above rain and video */
    padding: 20px;
  }
  
  .tilt-box .profile-img {
    width: 100px; /* Size of the profile picture */
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
  }
  
  .tilt-box .text {
    margin: 5px 0;
  }
  
  .tilt-box .text.primary {
    font-size: 22px;
    font-weight: bold;
  }
  
  .tilt-box .text.secondary {
    font-size: 16px;
    color: rgba(59, 59, 59, 0.7);
  }
  
  /* Image links (b1, b2, b3) below the secondary text */
  .tilt-box .image-links {
    display: flex;
    gap: 10px;
    margin-top: 6px;
  }
  
  .tilt-box .image-links a {
    display: block;
  }
  
  .tilt-box .image-links img {
    height: 30px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
  }
  
  .tilt-box .image-links img:hover {
    transform: scale(1.1); /* Slight hover effect */
  }
  
/* Movable Frame */
.frame {
    position: absolute;
    border: none; /* No outlines */
    border-radius: 10px;
    z-index: 2; /* Ensure it's above the rain and video */
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: all;
  }
  
  .frame img {
    height: 110%; /* Ensure the image fills the frame */
    object-fit: cover;
    border-radius: 10px;
    pointer-events: all; /* Enable interaction with the image for dragging */
    cursor: move; /* Show the move cursor on the image */
  }  
  
  /* Clickable frame */
  .clickable-frame {
    position: absolute;
    border: none; /* No outlines */
    border-radius: 10px;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer; /* Show pointer to indicate interactivity */
  }
  
  .clickable-frame img {
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
  }
  
  .frame .links {
    position: absolute;
    bottom: 10px;
    display: flex;
    gap: 10px;
  }
  
  .frame .links img {
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .frame .links img:hover {
    transform: scale(1.2);
  }
  