.header {
    background-color: var(--secondary-color);
    color: var(--accent-color);
    padding: 1rem 0;


    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header h1 {
    color: white;
    text-align: center;
    margin-bottom: 1rem;
}

.logo {
    height: 50px;
    width: 50px;
}