*{
    margin: 0;
    padding: 0;
}

body{
    position: relative;
    min-height: 100vh;
    background: #1C2833;
    overflow: hidden;
    font-family: Arial;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}

#underline{
    position: fixed;
    left: calc(50% - 120px);
    bottom: calc(50% - 85px);
    width: 120px;
    height: 10px;
    background: #566573;
    border-radius: 2px;
    z-index: -1;
}

p{
    position: fixed;
    line-height: 100%;
    height: 100%;
    font-size: 200px;
    font-weight: 1000;
    text-wrap: nowrap;
    left: 50%;
    transform: translateX(-120px);
    top: calc(50% - 110px);
    color: #2C3E50;
    font-family: 'Roboto Mono', monospace;
    transition: 0.15s transform;
}

#user-text{
    position: fixed;
    line-height: 100%;
    height: max-content;
    width: 100vw;
    font-size: 200px;
    font-weight: 1000;
    text-wrap: nowrap;
    left: 50%;
    transform: translateX(-120px);
    top: calc(50% - 110px);
    color: #2C3E50;
    /* background: #566573; */
    font-family: 'Roboto Mono', monospace;
    transition: 0.15s transform;
}

#user-text p{
    position: relative;
    display: inline;
    color: #2ECC71;
    left: 0;
    transform: none;
    top: 0;
    transition: none;
}

#user-text p.correct{
    color: #2ECC71;
}

#user-text p.wrong{
    color: #CC2E2E;
}

#score {
    margin-left: 2%;
}

#highscore {
    margin-right: 2%;
}

#scorecontainer{
    color: white;
    position: fixed;
    display: flex;
    justify-content: space-between;
    top: 0px;
    padding-top: 45px;
    padding-bottom: 10px;
    width: 100vw;
    /* background: rgba(28, 40, 51, 0.5); */
    /* backdrop-filter: blur(20px); */
    pointer-events: none;
}