body {
    background-color: #333;
    color: #fff;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    margin-left: 1rem;
    padding: 0px;
}

header {
    display: flex;
    justify-content: space-between; /* left h1, right login-signup */
    align-items: center;
    padding: 0.5rem 0rem;

    h1 {
        margin-right: 1rem;
    }

    .login-signup {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        margin-right: 1rem;
        gap: 0.75rem; /* spacing between buttons */
    }

    button {
        background-color: #444;
        color: #fff;
        border: none;
        padding: 0.5rem 1rem;
        border-radius: 0.375rem;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.3s ease;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    button:hover {
        background-color: #555;
        transform: scale(1.05);
    }

    button:active {
        transform: scale(0.95);
    }
}
