body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #fafafa;
    scroll-behavior: smooth; /* enables smooth scrolling */
  }

  header {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 24px;
    animation: slideDown 1s ease-out;
  }

  nav {
    background-color: #444;
    display: flex;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 10;
  }

  nav a {
    color: white;
    padding: 14px 20px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s, transform 0.3s;
  }

  nav a:hover {
    background-color: #666;
    transform: scale(1.1);
  }

  section {
    min-height: 90vh;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-bottom: 1px solid #ccc;
    
  }


  #home {
    background: lightpink;
  }
  .p1{
    font-size: 20px;

    
  }

  #about {
    background: lightgreen;
  }

  #contact {
    background: lightblue;
  }

  .video-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .video-wrapper video {   
    width: 80%;
    max-width: 800px;
    border: 2px solid #ccc;
    border-radius: 8px;
    background: #000;
    opacity: 0;
    animation: fadeIn 2s forwards;
  }
  .rickroll{
    align-items: center;
    height: 50px;
    width: 20px;
    padding-left: 280px;
    
  }
  

  footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 15px;
  }

  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  @keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
  }