@import 'variables', 'mixins';
#app {
    width: 100vw;
    height: 100vh;
}
body {
    margin: 0;
    display: flex;
    place-items: center;
    min-width: 320px;
    min-height: 100vh;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

input,
div,
span,
img,
button {
    box-sizing: border-box;
    font-family: 'Geist', sans-serif;
    font-optical-sizing: auto;
    padding: 0;
}
img {
    max-width: 100%;
    height: auto;
}

.widget-fade-enter-active,
.widget-fade-leave-active {
    transition: opacity 0.3s ease;
}

.widget-fade-enter-from,
.widget-fade-leave-to {
    opacity: 0;
}
