/* Style for the sticky header */
.sticky-header {
    background-color: #333;
    color: #fff;
    padding: 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100px;
    transition: top 0.3s;
}

.content {
    /* Add some padding to create space below the sticky header */
    padding-top: 100px;
}

/* Add your other CSS styles for the website content here */