
    body {
      font-family: Arial, sans-serif;
      background-image: url('Pink.jpg');
      cursor: none;
      margin: 0;
    }
    #cursorobject {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none; 
    transform: translate(-50%, -50%);
    z-index: 9999;
    }
    
    #cursorobject img {
    width: 30px;
    height: 30px;
    animation: rotate 1.5s linear infinite;
    }
    @keyframes rotate {
     from {
        transform: rotate(0deg);
     }
    to {
    transform: rotate(360deg);
     }
   }


    .container {
      display: grid;
      grid-template-columns: 0.7fr 0.7fr; 
      grid-template-rows: auto auto;  
      gap: 20px;
      max-width: 100vw;
      height: 100vh;  
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .container > .card {
      grid-column: 1 / 2; 
      grid-row: 1 / 2;    
      background-color: #fff;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      text-align: center;
    }

    .container > .Notescard {
      grid-column: 1 / 2; 
      grid-row: 2 / 3;   
      background-color: #fff;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      text-align: justify;
    }

    .container > .wide-card {
      grid-column: 2 / 3;
      grid-row: 1 / 3;    
      background-color: #fff;
      padding: 15px;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      overflow: auto;
    }

    .wide-card iframe {
      width: 100%;
      height: 100%;
      min-height: 50px; 
      border: none;
    }

    .form-button {
      display: inline-block;
      padding: 12px 20px;
      background-color: #96046d;
      color: white;
      text-decoration: none;
      border-radius: 6px;
      font-weight: bold;
      font-size: 16px;
      transition: background-color 0.2s ease-in-out;
    }

    .form-button:hover {
      background-color: #5a0342;
    }

    .title-bar {
        
        background-image: url('pinkeyes.jpg');
        background-size: cover;  
        background-position: top;
        color: white;
        width: 100%;
        padding: 12px 12px;
        text-align: center;
        font-family: Arial, sans-serif;
        font-weight: bold;
        font-size: 20px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        position: sticky; 
        top: 0;
        z-index: 1000;
}
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100vw;
  min-height: 100vh;
  object-fit: cover;
  z-index: -1;
}

.floating-feedback-box {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 250px;
  background-color: #ffffffee;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 999;
  font-family: Arial, sans-serif;
}

.floating-feedback-box textarea {
  width: 100%;
  height: 80px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  resize: none;
  font-size: 14px;
  box-sizing: border-box;
  margin-bottom: 10px;
}

.floating-feedback-box button {
  width: 100%;
  background-color: #ca0291;
  color: white;
  border: none;
  padding: 8px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
}

.floating-feedback-box button:hover {
  background-color: #760356;
}


