
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #f3f4f5, #e9eef5);
  }
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #333;
    padding: 10px;
    text-align: right;
    margin-right: 20px;
    word-spacing: 20px;
    z-index: 1000;
  }
  
  a {
    border: 1px solid white;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    font-size: 15px;
    border-radius: 10px;
    margin-top: 2px;
  }
  
  a:hover {
    background-color: #806d21;
    color: rgb(254, 253, 253);
  }
  
  .para {
    float: left;
    color: bisque;
    word-spacing: 5px;
    margin-top: 2px;
    font-family: cursive;
    font-size: 30px;
  }
  
  @media (max-width: 768px) {
  
    nav {
        text-align: center;
        padding: 10px;
        height: 50px;
        word-spacing: 0.5px;
        
    }
  
    .nav-links a {
        display: block;
        margin-top: 10px;
        padding: 12px 20px; 
    }
  
   
    .para {
        font-size: 10px;
        margin-top: 10px;
        word-spacing: 1px;
    }
    
    a {
        width: auto;
        padding: 12px 7px;
        border:1px solid beige;
        border-radius: 5px;
        font-size: 6px;
        gap: 1px;
    }
  }
  
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    }
    
    footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    }
    
    footer .footer-content p {
    margin: 10px 0;
    font-size: 14px;
    }
    
    footer .footer-content a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    }
    
    footer .footer-content a:hover {
    color: #FF5722; 
    }
    
    /* Responsive Styles for Footer */
    @media (max-width: 480px) {
    footer .footer-content p {
    font-size: 12px; 
    }
    
    footer .footer-content a {
    font-size: 14px; 
    }
    }