body {
    font-family: Arial, sans-serif;
    color: white;
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: auto;
  }
  
  /* 🎥 OPTION 1: Background Video */
  /*
  body {
    background: black;
  }
  .video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }
  */
  /*option2*/
  
  body {
    background: url("../images/car-mountain.png") no-repeat center center fixed;
    background-size: cover;
  }
  
  .profile {
    margin-top: 75px;
  }
  
  .profile img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #ff4500;
  }
  
  .profile h2 {
    margin: 10px 0 5px;
  }
  
  .profile p {
    font-size: 14px;
    color: #b0b0b0;
  }
  
  .link-container {
    margin-top: 20px;
    width: 90%;
    max-width: 400px;
  }
  
  .link {
    display: block;
    padding: 15px;
    background-color: #ff4500;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0;
    border-radius: 8px;
    transition: 0.3s ease-in-out;
  }
  
  .link:hover {
    background-color: #ff5733;
    transform: scale(1.05);
  }
  
  .link:active {
    transform: scale(0.95);
  }
  
  .clicked {
    animation: clickEffect 0.2s ease-in-out;
  }
  
  @keyframes clickEffect {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
  }
  
  
  footer {
    margin-top: 20px;
    font-size: 14px;
    color: #b0b0b0;
  }
  