/* Copyright (c) Clothesline Digital
 * All rights reserved */

* {
    cursor: default;
}

body {
    width: 100vw;
    height: 100vh;
    padding: 0;
    margin: 0;
    background: #CEAF90;
    display: flex;
    flex-direction: column;
    font: bold 16px sans-serif;
}

.background {
    background-image: url(background.jpg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    flex: 1;
}

.text {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #333;
    text-align: center;
    font-size: 250%;
    box-sizing: border-box;
}

.top {
    padding: .5em .3em 0 .3em;
}

.bottom {
    padding: 0 .3em .5em .3em;
}
