﻿@import '/UI/Style.scss';

Speedometer {
    position: absolute;
	bottom: 15%;
    opacity: 0;
    aspect-ratio: 1;
    font-family: $font-main;
	font-size: 40px;
	text-shadow: 4px 4px 0px black;
    justify-content: center;
    align-items: center;
    transition: opacity 0.2s ease-in-out;

    &.visible {
        opacity: 1;
    }

    &p {
		width: 100%;
    }
}
