@import "./gui.scss";

Scoreboard {
    position: absolute;
    top: 50px;
    // left: 400px;
    // right: 400px;
    width: 1600px;
    left: 50%;
    margin-left: -800px;
    // transform: translateX(-50%);
    
    bottom: 50px;

    padding: 40px;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(1px);
    color: #fff;
    
    gap: 40px;
    
    transition: all 0.08s;
    
    z-index: 100;
    
    &:intro {
        opacity: 0;
        transform: translateY(-100%);
    }
    
    &:outro {
        opacity: 0;
        transform: translateY(100%);
    }
    
    &.is-voting {
        pointer-events: all;
    }
    
    .voting {
        width: 450px;
    }
    
    .scoreboard {
        
        // background-color: red;
        
        // border-radius: 30px;

        // backdrop-filter: blur(2px);

        flex-wrap: wrap;

        font-family: Roboto;
        font-size: 25px;

        z-index: 100;

        h1 {
            font-family: Poppins;
            font-size: 60px;
            font-weight: 800;
            // margin-bottom: 20px;
            width: 100%;
        }
    }
    

}

