﻿
@import "_vars.scss";

CheckpointOverlay {
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0;
    z-index: 100;
    font-weight: 100;
    transition: all 1s ease-out;
    transition: opacity .1s linear;

    &.visible {
        opacity: 1;
        transition: all 1s ease-in;
    }

    label {
        font-family: $font-family-title;
        text-shadow: $text-shadow-red;
        color: $white;
        font-size: 48px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateX(-50%);
    }
}
