.header {
    position: fixed;
    display: flex;
    justify-content: space-between; /* Space between left and right */
    flex-direction: row; /* Horizontal layout */
    background-color: #f8f8f8; /* Example background color */
    height: 60px; /* Example height */
    width: 100%; /* Full width */
}

.left-side-header {
    align-items: center;
    display: flex;
    background-color: #f8f8f8; /* Example background color */
    margin-left: 20px; /* Example left margin */
    font-family: 'Cedarville Cursive', cursive; /* Example font */
    font-size: 30px;
}

.right-side-header {
    align-items: center;
    display: flex;
    background-color: #f8f8f8; /* Example background color */
}

.right-side-sections {
    display: flex;
    justify-content: space-between; /* Space between sections */
    align-items: center; /* Center vertically */
    gap: 20px; /* Space between sections */
}

.home-button, .about-me-button, .my-journey-button {
    background-color: transparent; /* Example button color */
    color: black    ; /* Text color */
    border: none; /* Remove border */
    padding: 10px 20px; /* Padding */
    text-align: center; /* Center text */
    text-decoration: none; /* Remove underline */
    display: inline-block; /* Inline block */
    font-size: 16px; /* Font size */
    margin: 4px 2px; /* Margin */
    cursor: pointer; /* Pointer cursor on hover */
    border-radius: 5px; /* Rounded corners */
    transition: ease-in 0.5s; /* Smooth transition */
    font-family: 'Cedarville Cursive', cursive; /* Example font */
}

.home-button:hover, .about-me-button:hover, .my-journey-button:hover {
    background-color: #ddd; /* Example hover background color */
    color: black; /* Example hover text color */
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); /* Example shadow */
    transition: ease-out 0.3s; /* Smooth transition */
    
}