.header{
    height: 55px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    font-size: 30px;
    backdrop-filter: blur(5px);
    background-color:  rgba(170, 169, 169, 0.7);
    z-index: 1000;
    color:black;
    align-items: center;
}

.left-header{
    padding: 20px;
}

.right-header {
    display: flex; 
    gap: 20px; 
}

.right-header a {
    color: black;
    text-decoration: none; 
    transition: color 0.3s ease-in-out, transform 0.3s ease-in-out; /* Smooth color and size transition */
}

.right-header a:hover {
    color: gray;
    transform: scale(1.1);
}

