#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    box-sizing: border-box;
    z-index: 200;
}

#header-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

#header-content a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

#logo {
    height: 30px;
    width: auto;
}

#playbook-text {
    font-family: 'Open Sans', sans-serif;
    font-stretch: 87.5%;
    font-weight: 800;
    font-style: italic;
    font-size: 24px;
    color: white;
    margin: 0;
}

#get-cards-button {
    background-color: #FFEAC6;
    color: #444444;
    font-family: 'Open Sans', sans-serif;
    font-stretch: 87.5%;
    font-weight: 700;
    font-size: 12px;
    padding: 8px 12px;
    border: none;
    border-radius: 100px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: transform 0.1s ease-in-out;
}

#get-cards-button:active {
    transform: scale(0.95);
}