h2 {
    text-align: center;
}

#logout-button, #start-transfer-button {
    padding-left: 1rem;
    padding-right: 1rem;
}

#shop-buy-flag-button {
    background-color: #155dfc;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: 0.25s ease;
    cursor: pointer;
    &:disabled {
        border-width: 1px;
        border-color: #364153;
        background-color: #1e2939;
        cursor: not-allowed;
        &:hover {
            transform: none;
        }
    }
    &:hover {
        transform: scale(110%);
    }
}