.intro {
    position: relative;
    width: 100vw;
    height: 100vh;
    bottom: 0px;
    left: 50%;
    overflow: hidden;

    transform: translateX(-50%);

    z-index: 100;
}

.intro-rpm {

    pointer-events: none;
    position: absolute;
    left: 50%;
    top: -140px;
    z-index: 10;
    transform: translateX(-50%) scale(0.75);
}

.intro-bar {
    width: 76px;
    height: 12px;

    border: solid;
    border-color: white;
    border-width: 2px;

    margin-bottom: 5px;
}

.intro-bar.full {
    background-color: white;
}

.intro-rpm-text {
    font-family: Archivo;
    font-weight: bolder;

    position: absolute;
    color: white;
    left: -10px;
    bottom: 0px;

    transform: translateX(-100%);
}

.intro-speed-text {
    font-family: Archivo;
    font-weight: bolder;

    position: absolute;
    color: white;
    right: -10px;
    top: 85%;

    transform: translateX(100%);
}

.intro-click-and-hold {
    position: absolute;
    left: 50%;
    width: 200px;
    bottom: -0px;
    text-align: center;

    font-family: Archivo;
    font-size: 15px;
    font-weight: 10;
    color: white;

    transform: translateY(100%) translateX(-50%);
}

.intro-scene-3d {
    position: absolute;
    top: 0px;
    left: 0px;
}

.intro-scene-3d.car {
    z-index: 5;
    pointer-events: none;
}


.scene-intro {
    position: absolute;
    z-index: -100;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    overflow: hidden;
}

.intro-hw {
    color: white;
    font-family: ArchivoThin;
    text-transform: uppercase;
    position: absolute;

    text-align: center;

    left: 50%;
    bottom: 50px;
    width: 80%;

    line-height: 15px;

    font-weight: bold;
    letter-spacing : 2px;

    transform: translateX(-50%) translateY(-50%);
}

@media only screen and (max-width: 800px) {
    .intro {
        zoom: 0.8;
        bottom: -20%;
    }

    .intro-rpm {
        top: -180px;
        transform: translateX(-50%) scale(0.9);
    }


    .intro-hw {
        font-size: 13px;
        bottom: 40px;
    }
}