    p {
        font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    }

    .header {
        background-color: rgb(255, 255, 255);
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: .5rem;
        border: 1px solid #ddd;
        border-radius: 5px;
    }

      .logo {
        width: 100px;
      }

      .logo img {
        object-fit: contain;
        width: 100%;
        height: auto;
      }

      .header-text {
        text-align: center;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: 2rem;
        line-height: 1;
        margin-bottom: 5px;
      }

    #motto {
        text-align: center;
        font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-size: 1.5rem;
        line-height: 0.1;
        margin-bottom: 1px;
    }
    #emoji {
        text-align: center;
        font-size: 1.5rem;
        line-height: 0.1;
    }

    .nss-intro {
        position: relative;
        max-width: 800px;
        margin: 0 auto;
        padding: 20px;
        text-align: center;
        border: 1px solid #ddd;
        border-radius: 5px;
        box-shadow: 0px 0px 10px #ddd;
    }

    .nss-intro::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('res/nssLogo.png');
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 0.08;
    }

    .nss-intro h1 {
        font-size: 3rem;
        margin-bottom: 0;
    }
  
    .nss-intro h2 {
        font-size: 2rem;
        font-weight: normal;
        margin-top: 0;
        color: #666;
    }
  
    .nss-intro p {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    @media only screen and (max-width: 600px) {
      /* Adjust styles for small screens */
      .event-item {
          flex-direction: column; /* Stack items vertically */
          text-align: left; /* Align text to the left */
      }
    }

    .events-container {
        position: relative;
        max-width: 1200px;
        margin: 20px auto;
        padding: 20px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        border: 1px solid #ddd;
        border-radius: 5px;
        /* box-shadow: 0px 0px 5px #ddd; */
      }
      
      .event-item {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        align-items: center;
        text-align:justify;
        position: relative;
        margin-bottom: 15px;
        /* border: 1px solid #ddd; */
    }
      
      .event-image {
        width: 100%;
        margin-right: 20px;
      }
      
      .event-image img {
        max-width: 100%;
        height: auto;
        border-radius: 5px;
      }
      
      .event-details {
        max-width: 600px;
      }
      
      .event-date {
        margin-bottom: 10px;
      }
      
      .event-date span {
        display: block;
        font-size: 0.8rem;
        color: #666;
      }
      
      .event-details h2 {
        margin-top: 0;
        margin-bottom: 10px;
      }
      
      .event-details p {
        margin-bottom: 10px;
      }
      
      .learn-more-btn {
        display: block;
        background-color: #4CAF50;
        color: white;
        padding: 10px 20px;
        border: none;
        border-radius: 5px;
        text-decoration: none;
        margin: 0px auto;
        transition: background-color 0.3s ease, transform 0.2s ease, margin-top 0.2s ease;
      }
      
      .learn-more-btn:hover {
        background-color: #3e8e41;
        transform: scale(1.1);
      }

      /* Scroll to top button styles */
      #scrollToTopBtn {
        display: none; /* Hide the button by default */
        position: fixed; /* Fixed position so it stays visible */
        bottom: 20px;
        right: 20px;
        z-index: 99; /* Ensure the button is above other elements */
        width: 40px; /* Adjust width to fit the image */
        height: 40px; /* Adjust height to fit the image */
        background-color: transparent; /* Remove background color */
        border: none;
        cursor: pointer;
        transition: opacity 0.3s ease; /* Smooth transition for visibility */
      }

      #scrollToTopBtn img {
        width: 100%; /* Make the image fill the button */
        height: 100%; /* Make the image fill the button */
      }
      
      