
* {
    padding: 0;
    margin: 0;
    font-family: 'Syne Mono', monospace;
    /*user-select: none;*/
}


body > * {
    position: fixed;
}

.background {
    position: fixed;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 0;

    background-image: url('main.jpg');
    background-size: cover;
    background-position-y: top;
    background-position-x: right;
}

.logo {
    z-index: 2;


    position: fixed;
    top: 1rem;
    right: 2rem;

    color: white;
    font-size: 24px;
}

.info-box {
    z-index: 1;

}

.footer {
    z-index: 2;


    position: fixed;
    bottom: .2rem;
    right: .5rem;

    color: white;
    cursor: pointer;
    font-size: 24px;
}

.frame {
    background: white;
    width: 80vw;
    left: 10vw;
    height: 80vh;
    top: 10vh;
    z-index: 4;
}