﻿Main {
    width: 100%;
    height: 100%;
}

.drift-score {
    position: absolute;
    bottom: 50px;
    left: 50px;
    color: gray;

    font-weight: bold;
    font-family: Rubik Mono One;
    font-style: italic;
    text-shadow: 2px 2px 0 black;

    flex-direction: column;

    &.active {
        .current {
            
            color: red;
        }
    }

    .current {
        font-size: 120px;
        align-items: center;
        align-content: center;
        justify-content: center;
        gap: 50px;
    }

    .max {
        font-size: 60px;
        color: orange;
    }
}

.speedometer {
    position: absolute;
    bottom: 50px;
    right: 50px;
    color: yellow;
    font-size: 120px;
    font-weight: bold;
    font-family: Orbitron;
    font-style: italic;
    text-shadow: 2px 2px 0 black;
    gap: 20px;
    align-items: flex-end;

    .unit {
        font-size: 50px;
        margin-bottom: 15px;
    }
}

.loading {
    position: absolute;
    bottom: 50px;
    left: 50px;
    color: white;
    font-size: 120px;
    font-weight: bold;
    font-family: Arial;
    font-style: italic;
}

.help {
    color: white;
    flex-direction: column;
    position: absolute;
    top: 50px;
    left: 50px;
    font-size: 20px;
    font-family: Arial;
    text-shadow: 1px 1px 0 black;
}

.timer {
    width: 80px;
    height: 80px;
    border-radius: 100%;
    background: conic-gradient(white 80%, red 20%);
    opacity: 1;
    
    margin-bottom: 10px;

    &:outro {
        opacity: 0;
    }

    &:intro {
        opacity: 0;
    }
}