.app>.content>.game {
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
    user-select: none;
    -moz-user-select: none;
    font-family: var(--font-family-main);
}

.app>.content>.game>.open-projects {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-top: 50px;
    padding-bottom: 50px;
}

.app>.content>.game>.open-projects>.select {
    color: var(--color-high-light);
    border: 1px solid var(--color-high-light);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    min-width: fit-content;
    max-width: 250px;
    cursor: pointer;
    background: linear-gradient(45deg, #e0e0e050 25%, transparent 25%, transparent 50%, #e0e0e050 50%, #e0e0e050 75%, transparent 75%, transparent);
    background-size: 5px 5px;
    padding: 3px;
    margin: 2px;
    text-align: center;
}

.app>.content>.game>.open-projects>.select:hover {
    color: var(--color-high-light);
    background-color: var(--color-high-light-darkness);
}

.app>.content>.game>.open-projects>.select:active {
    background-color: var(--color-high-light-darkness-max);
}