.about-container {
    position: relative;
    user-select: none;
    width: 100%;
    font-family: var(--font-familiy);
    font-size: var(--info-font-size);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 4999;
    background-color: transparent;
    transition: background-color var(--transition-time) ease-in;
}

.about-button {
    width: calc(4*var(--info-font-size));
    height: calc(1.5*var(--info-font-size));
    margin-bottom: 5px;
    position: relative;
    background-color: white;
    color: black;
    align-items: center;
    justify-content: center;
    font-size: var(--info-font-size);
    z-index: 5000;
    border-bottom: var(--border-width) solid black;
    border-left: var(--border-width) solid black;
    border-right: var(--border-width) solid black;
    border-bottom-left-radius: calc(var(--card-height) / 10);
    border-bottom-right-radius: calc(var(--card-height) / 10);
    cursor: pointer;
}

.about-content {
    font-size: var(--button-font-size);
    position: relative;
    display: none;
    color: black;
    flex-direction: column;
    width: 100%;
    /*height: 100%;
    overflow: auto;
    overscroll-behavior: none;
    padding: 20px;*/
    opacity: 0;
    z-index: 5000;
    pointer-events: none;
    transition: opacity var(--transition-time) ease-in
}

.credit {
    background-color: black; 
    color: white; 
    padding-left: 15px; 
    padding-right: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.open {
    opacity: 1;
    pointer-events: all;
}

.blurred {
    filter: blur(8px);
    pointer-events: none;
}

/*.about-button:hover {
    background: linear-gradient(45deg, rgba(238, 130, 238, 0.3), rgba(93, 184, 249, 0.3));
}*/