/**
 * Revolve
 *
 * Copyright (c) 2022-present meezwhite. All rights reserved.
 * Twitter: @meezwhite
 * Website: https://meezwhite.xyz
 *
 * For license information please see LICENSE.md
 */

html,
body {
    width: 100%;
    height: 100%;
    font-family: monospace;
    font-size: 1.1rem;
}
body {
    background: #e2e2e2;
    margin: 0;
    padding: 0;
    overflow: hidden;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%;
    height: 100%;
}
main {
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#leinwand {
    display: block;
    object-fit: contain;
    max-width: 90%;
    max-height: 90%;
    filter: drop-shadow(0.382rem 0.382rem 0.382rem rgba(26, 26, 26, 0.382));
}
#p5_loading {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
