body {
    margin: 0;
    font-family: Arial, sans-serif;
}

@keyframes customAnimation {
    0% {
        /* Define the initial state of your custom animation */
        transform: scale(0);
        opacity: 0;
    }
    100% {
        /* Define the final state of your custom animation */
        transform: scale(1);
        opacity: 1;
    }
}

.content {
    opacity: 0; /* Hide content initially */
    animation: customAnimation 1s ease-in-out forwards;
}
a:link { 
    text-decoration: none; 
  } 
  a:visited { 
    text-decoration: none; 
  } 
  a:hover { 
    text-decoration: none; 
  } 
  a:active { 
    text-decoration: none; 
  }
  