:root{
    --COL1: rgb(0, 255, 100);
    --COL2: #00ffff;

}

@font-face {
    font-family: "ColorFont";
    src: url("/neon/static/fonts/BEAMNeonVarSW0_COL3,wght.woff2") format("truetype");
    font-display: swap;
    
}

/* Define custom font palette */
@font-palette-values --custom-palette {
    font-family: "ColorFont";
    base-palette: 0;
    override-colors: 
        0 rgb(63, 38, 38),
        1 rgb(0, 255, 255),
        2 rgb(204, 0, 204),
        3 rgb(200, 100, 155);
}
 
.tester{
    display: block;
    z-index: 1000;
    height: 50vh;

    text-align: center;
    text-wrap: normal;
    height: fit-content;
    border: none;

    font-family: "ColorFont";
    font-size: 360px;
    line-height: 200px;
    font-weight: 1000;
    font-variation-settings: "ADDC" 600,
                            "ADDS" 0,
                            "ADDN" 400, 
                            "SLNT" 0;
    text-align: center;
    font-palette: --custom-palette;

    overflow-y: hidden;

}

.tester div{
    padding: 48px;
}

[contenteditable]:focus {
    outline: 0px solid transparent;
}

.tester-settings {
    background-color: black;
    max-width: 100vw;
    max-height: fit-content;
    color: var(--font-colour-text-light);
    /* position: sticky;
    top: 94.8px; */
}

.tester-settings ul {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    max-width: 100%; 
    min-width: var(--min-width); 
}

.tester-settings ul li{
    display: flex;
    align-items: center;
    min-width: fit-content;
}

.tester-settings span{
    white-space: nowrap;
}

.slider::-webkit-slider-thumb {
    /* -webkit-appearance: none; 
    appearance: none; */
    background: var(--project-hover-text); 
    cursor: pointer
  }
  
  .slider::-moz-range-thumb {
    background: var(--project-hover-text);  
    cursor: pointer;
  }


.radio-button-container{
    display: flex;
    align-items: center;
}

.justification.margin-narrow{
    margin-left: 0;
}

/* -------------------------------------*/
/* alert ------------------------------*/
/* -------------------------------------*/

.alert{
    display: none;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    position: fixed;
    z-index: 200;
    box-sizing: border-box;
    text-align: center;

    top: 0vh;
    left: 0vw;
    width: 100vw;
    height: 100vh;

    background: rgba(25, 25, 25, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* For Safari */
    color: var(--font-colour-text-very-light);

    min-width: var(--min-width);
}

.alert p{
    margin: 0;
    max-width: 500px;
    
}
