﻿@import '../Styles/styles.scss';

RacingHud {
  font-family: $font-secondary;
  
  .countdown {
    width: 100%;
    height: 100%;
    font-size: 128px;
    color: #e1e1e1;
    text-stroke: 4px black;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: scale(2);
    transition: all 0.5s ease-in-out;
    
    &.scale {
      transform: scale(1);
    }
    
    &.hide {
      opacity: 0;
    }
  }
}