html {
    scroll-padding: 64px 0;
}
body {
    margin: 0;
    color: #fff;
    background-color: rgb(128, 0, 48);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 200;
    font-size: 1.2rem;
    line-height: 1.2;
    text-align: center;
    padding: 0 1rem 4rem 1rem;
    touch-action: pan-x pan-y;
}
p {
    margin: .5rem 0;
}
hr {
    margin: 1rem 0;
    height: 1px;
    border: none;
    background-color: white;
}
ul.menu {
    position: fixed;
    z-index: 998;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
    /* background-color: rgb(128, 0, 48); */
    background-color: inherit;
    margin: 0;
    padding: 0;
    box-shadow: 0 0 16px 16px rgb(128, 0, 48);
    display: flex;
    list-style-type: none;
    justify-content: space-between;
    align-items: center;
}
ul.menu a {
    text-decoration: none;
    color: inherit;
}
ul.menu li {
    margin: 0 1rem;
    padding: 0;
    flex: 1;
}
ul.menu li img {
    margin: 0;
}
ul.menu li.left {
    text-align: left;
}
ul.menu li.center {
    text-align: center;
}
ul.menu li.right {
    text-align: right;
}
ul.menu li img.icon {
    height: 48px;
    min-height: 48px;
    max-height: 48px;
}
div.splash {
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 999;
}
div.splash a {
    text-decoration: none;
    color: inherit;
}
div.splash img.logo {
    width: 160px;
    max-width: 30vmin;
    max-height: 30vmin;
    box-shadow: 0 0 16px 16px rgb(128, 0, 48);
}

h1 {
    font-size: 2.4rem;
    font-weight: inherit;
    margin: 2rem 0;
}
h2 {
    font-size: 1.8rem;
    font-weight: inherit;
    opacity: 0.5;
    margin: 2rem 0;
}
div.footer {
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: inherit;
    box-shadow: 0 0 16px 16px rgb(128, 0, 48);
}
div.footer p {
    font-size: 1rem;
    opacity: 0.6;
    margin: 0.5rem auto;
}
div.footer a {
    text-decoration: none;
    color: inherit;
}
span.toast {
    display: block;
    position: fixed;
    z-index: 1000;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: 1rem auto;
    padding: 1rem 1rem;
    height: fit-content;
    width: fit-content;
    border-radius: 6px;
    background-color: white;
    color: rgb(128, 0, 48);
    box-shadow: black 0 0 2rem;
    text-align: center;
}
.fadein {
    visibility: visible;
    opacity: 1;
    transition: 1s ease-in-out 3s;
}
.fadeout {
    visibility: hidden;
    opacity: 0;
    transition: 1s ease-in-out 3s;
}
div.modal {
    margin: 0;
}
form {
    display: block;
    margin: 0 auto;
    padding: 1rem 1rem;
    height: fit-content;
    width: fit-content;
    border-radius: 6px;
    background-color: white;
    color: rgb(128, 0, 48);
    box-shadow: black 0 0 2rem;
    text-align: center;
}
form *:focus {
    outline: none;
}
form *::placeholder {
    color: gray;
}
form *:focus::placeholder {
    opacity: 0;
}
div.g-recaptcha {
    width: fit-content;
    margin: 1rem auto;
}
form h1 {
    font-size: 2.4rem;
    margin: 1rem 0;
}
form h2 {
    font-size: 1.8rem;
    margin: 1rem 0;
}
form p.footer {
    font-size: 1rem;
    opacity: 0.6;
    margin: 0.5rem 0;
}
form hr {
    margin: 1rem O;
    height: 1px;
    border: none;
    background-color: rgb(128, 0, 48);
}
input, textarea, select {
    background-color: inherit;
    color: inherit;
    appearance: none;
    -webkit-appearance: none;
    resize: vertical;
}
input:not([type="image"]):not([type="submit"]):not([type="button"]):not([type="reset"]), textarea, select {
    font-size: 1.2rem;
    font-weight: 100;
    margin: 0.5rem 0;
    padding: 0 0.2rem;
    border-style: solid;
    border-color: lightgray;
    border-width: 0 0 1px 0;
    border-radius: 0;
    width: 100%;
}
select:invalid {
    color: gray;
}
button, input[type="submit"], input[type="button"], input[type="reset"] {
    font-size: 1rem;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-style: none;
    border-radius: 1rem;
    text-transform: uppercase;
    width: fit-content;
}
button:hover, button, input[type="submit"]:hover, input[type="button"]:hover, input[type="reset"]:hover {
    background-color: rgb(128, 0, 48);
    color: white;
}
