.scatter-card{
    display: flex;
    flex-direction: column;
    position: absolute;
    background-color: rgba(125, 125, 125, 0.3);
    border-radius: 10px;
    border: solid 2px rgba(255, 255, 255, 0.2);
    user-select: none;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    opacity: 0;
    backdrop-filter: blur(5px);
    overflow: hidden;
}

.scatter-card:hover{
    background-color: rgba(255, 255, 255, 0.1);
    opacity: 0.5;
}

.scatter-header{
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    text-align: center;
    position: absolute;
    width: 100%;
    height: 40px;
    color: #fff;
}

.scatter-title{
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: calc(100% + 40px);
    height: 100%;
    letter-spacing: 1px;
    font-size: 75%;
    margin-right: -40px;
    color: rgba(255, 255, 255, 0.8);
}

.scatter-close-button{
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 40px;
    height: 40px;
    font-family: 'Meyrio';
}

.scatter-close-button>p{
    font-size: 100%;
}

.scatter-content{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 100%;
    height: 100%;
    color: #fff;
    overflow: auto;
    text-align: center;
    font-size: 80%;
}

.scatter-focused{
    backdrop-filter: blur(20px) saturate(160%) brightness(90%);
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}