﻿@font-face {
    font-family: Imago;
    src: url(/fonts/ImagoProBoo.ttf) format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: Imago;
    src: url(/fonts/ImagoProMed.ttf) format("truetype");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: Imago;
    src: url(/fonts/ImagoProBooIta.ttf) format("truetype");
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: Imago;
    src: url(/fonts/ImagoProMedIta.ttf) format("truetype");
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: Minion;
    src: url(/fonts/Minion-Regular.ttf) format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: Minion;
    src: url(/fonts/Minion-Bold.ttf) format("truetype");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: Minion;
    src: url(/fonts/Minion-Italic.ttf) format("truetype");
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: Minion;
    src: url(/fonts/Minion-BoldItalic.ttf) format("truetype");
    font-weight: bold;
    font-style: italic;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Imago;
}

html, body {
    margin: 0 0 0 0;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#app {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
}