﻿
@import "_vars.scss";

OverlayUI {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: black;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .15s ease;
    color: white;
    z-index:101;
}

OverlayUI.open {
    opacity: 1;
    pointer-events: all;
}

button {
    padding: 20px;
    margin: 20px;
    font-size: 20px;
    font-family: $font-family-title;
    text-shadow: $text-shadow-red;
    color: $white;
    border-image: url( /ui/border.png ) 50 fill stretch;
    border: 20px solid transparent;
    cursor: pointer;
    transition: all .08s ease;

    &:hover {
        transform: scale(1.1);
    }
}
