* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}


@font-face {
	font-family: "Verandah";
	src: url(assets/verandah_reverie.otf) format("opentype");
}

html {
    -ms-touch-action: manipulation;
        touch-action: manipulation;
}

body {
    font-family: "Verandah", Arial, Helvetica, sans-serif;
    background-color: #faf6f1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Verandah", Arial, Helvetica, sans-serif;
    font-weight: 100;
    color: #272727;
}

h1 {
    font-size: 34px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

hr {
    width: 80%;
    margin-left: 10%;
    border: none;
    border-top: 1px solid #2727277d;
}

select, input {
    background-color: #fff;
    border: 1px solid #272727;
    border-radius: 6px;
    padding: 8px 12px;
    color: #272727;
    font-size: 16px;
    font-family: "Verandah", Arial, Helvetica, sans-serif;
}

button {
    padding: 6px 12px;
    border: 1px solid #272727;
    border-radius: 6px;
    font-size: 16px;
    color: #272727;
    font-family: "Verandah", Arial, Helvetica, sans-serif;
}

select:disabled, input:disabled, button:disabled {
    opacity: 50%;
}

svg {
    user-select: none;
}



#main {
    display: none;
}

#status {
    position: absolute;
    height: 100vh;
    width: 100vw;
}

#longLoading {
    display: none;
}

.heart {
    position: absolute;
    height: 100vh;
    width: 100vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}