/* Header CSS Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /*background-color: rgba(0, 0, 0, 0.5); */
    background-color: #1f1f1f;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    transition: transform 0.3s ease-in-out;
}
  
.logo-text {
    font-family: 'Playwrite AU NSW', serif;
    font-optical-sizing: auto;
  
    font-style: normal;
    font-size: 1.5rem;
}
  
header nav a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    margin-left: 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
  
header nav a:hover {
    background-color: rgba(255, 255, 255, 0.3);
}