body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #1c1c1c; 
    color: whitesmoke; 
    cursor: url('images/cors.png') 4 4, auto;

  }
  a, button {
    cursor: url('images/cors2.png') 4 4, auto;
  }

  .container {
    max-width: 80%;
    margin: 0 auto;
    padding-top: 20px;
  }

  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
  }

  .logo img {
    width: 50px; 
    height: auto;
  }

  nav {
    display: flex;
    gap: 20px;
  }

  nav a {
    text-decoration: none;
    color: whitesmoke; 
    font-weight: bold;
    position: relative;
  }

  nav a.active {
    color: #ff69b4; 
  }

  nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: #ff69b4; 
    border-radius: 50%;
  }

  .main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 100px;
    flex-wrap: wrap; 
  }

  .text-left, .text-right {
    width: 25%;
    text-align: center;
    color: whitesmoke; 
  }

  .text-left h1, .text-right h1 {
    font-size: 55px;
    margin: 0;
    opacity: 1; 
    transform: scale(1); 
    transition: all 1s ease-out; 
    color: whitesmoke; 
  }

  .text-left p {
    font-size: 25px;
    font-style: italic;
    margin: 10px 0 0;
    opacity: 1; 
    transform: scale(1); 
    transition: all 1s ease-out;
    color:#ff69b4;
  }

  .image-container {
    width: 40%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }

  .image-container img {
    max-width: 100%; 
    height: auto;  
  }
  .social-button {
    position: fixed;
    bottom: -5%;
    left: 10%; 
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    z-index: 10; 
    cursor: url('images/cors2.png') 4 4, auto;
  }

  .social-button img {
    width: 50px; 
    height: auto;
    transition: transform 0.3s ease;
  }

  .social-button:hover img {
    transform: scale(1.1); 
  }

  .social-links {
    position: fixed;
    bottom: -5%;
    left: calc(11% + 60px); 
    display: flex; 
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    align-items: center; 
  }

  .social-links a {
    background-color: transparent;
  }

  .social-links img {
    width: 40px; 
    height: auto;
    transition: transform 0.3s ease;
  }

  .social-links img:hover {
    transform: scale(1.1); 
  }

  
  .social-button:hover + .social-links {
    opacity: 1;
  }

 
  .social-links:hover {
    opacity: 1;
  }

  #main-title:hover, #main-motto:hover, #right-text-1:hover, #right-text-2:hover, nav a:hover {
    transform: scale(1.1); 
  }

  @media (max-width: 1200px) {
    .container {
      max-width: 90%;
    }

    .text-left, .text-right {
      width: 30%;
    }

    .image-container {
      width: 35%;
    }
  }

  @media (max-width: 768px) {
    .main-content {
      flex-direction: column; 
      text-align: center;
    }

    .text-left, .text-right, .image-container {
      width: 100%; 
      margin-bottom: 20px;
    }

    .text-left h1, .text-right h1 {
      font-size: 28px; 
    }

    .text-left p {
      font-size: 16px;
    }
  }

  @media (max-width: 480px) {
    header {
      flex-direction: column; 
    }

    nav {
      margin-top: 10px;
    }

    .text-left h1, .text-right h1 {
      font-size: 24px;
    }

    .text-left p {
      font-size: 14px;
    }
  }
  .content {
    display: none; 
    opacity: 0; 
  }

  .title, .motto {
    transform: translateX(-100%); 
    animation: slideInLeft 0.8s forwards; 
  }

  .motto {
    animation-delay: 0.4s; 
    transform: translateX(100%); 
    animation: slideInRight 0.8s forwards; 
  }

  .content {
    display: none; 
    opacity: 0; 
    text-align: center; 
  }

  .title {
    transform: translateX(-100%); 
    animation: slideInLeft 0.8s forwards;
  }

  .motto {
    transform: translateX(100%); 
    animation: slideInRight 0.8s forwards; 
    animation-delay: 0.4s; 
  }

  @keyframes slideInLeft {
    from {
      opacity: 0;
      transform: translateX(-100%);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(100%);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .title {
    transform: translateX(-100%); 
    animation: slideInLeft 0.8s forwards; 
  }

  .motto {
    transform: translateX(100%); 
    animation: slideInRight 0.8s forwards; 
    animation-delay: 0.4s; 
  }
  .nav a:nth-child(1) {
    animation-delay: 0.6s; 
  }

  .nav a:nth-child(2) {
    animation-delay: 0.8s; 
  }

  .nav a:nth-child(3) {
    animation-delay: 1s;
  }

  .content {
    display: none; 
    opacity: 0; 
    transform: translateY(50px); 
    animation: fadeInUp 1s forwards;
  }

  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(50px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s; 
  }

  img:hover {
    transform: scale(1.05); 
  }
  .cross {
    position: absolute;
    color: #ff69b4; 
    font-size: 40px; 
    opacity: 0; 
    animation: fadeInOut 3s infinite; 
    z-index: -1;
  }

  @keyframes fadeInOut {
    0%, 100% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
  }