@font-face {
    font-family: 'monotype_corsivaregular';
    src: url('monotype_corsiva-webfont.woff2') format('woff2'),
    url('monotype_corsiva-webfont.woff') format('woff'),
    url('monotype_corsiva-webfont.ttf') format('truetype'),
    url('monotype_corsiva-webfont.svg#monotype_corsivaregular') format('svg');
    font-weight: normal;
    font-style: normal;

}
:root {
    --font-family: 'monotype_corsivaregular';
    --font-size: 1rem;
    --border-radius: 10px;
}

input[type="file"] {
    display: none;
    /*opacity: 0;*/
}
.preview {
    /*opacity: 0;*/
    display: inline-grid;
}
.preview p {
    display: none;
}
.preview img {
    max-width: 50px;
    max-height: 150px;
    transform: translateX(-30%);
    margin: 5px;
}
li {
    display: inline-block;
}
input[type="submit"], input[type="button"], input[type="reset"] {
    display: none;
}

.custom-submit,
.custom-cancel,
.custom-file-upload,
.custom-button {
    border: solid 1px lightgray;
    border-radius: var(--border-radius);
    display: inline-block;
    padding: 6px 12px;
    cursor: pointer;
    margin: 0.5rem;
    background: #e0efdc;

}
.center {
    /** neu */
    max-width: 200px;
    left: 50%;
    position: relative;
    transform: translateX(-50%);
}
.container {
    position: absolute;
}
form, .thanks, .error, .container {
    max-width: 400px;
    width: 80vw;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: auto;
    display: grid;
    text-align: center;

    transform: translate(-50%, -60%);
}
.container {
    top:0;
    transform: translate(-50%, 0);
}
.single-user {
    padding: 6px 12px;
    background: #e0efdc;
    border: solid 1px lightgray;
    border-radius: var(--border-radius);
    text-align: center;
    margin: 0.5rem;
}
.single-user__name,
.single-user__email {
    text-align: center;
    display: inline;
    position: relative;
    margin: 0.5rem;
}
.single-user__email{
    display: none;
}
.image-container__content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
    margin: auto;
}
.single-image {
    text-align: center;
    width: fit-content;
    height: fit-content;
    display: inline-flex;
    margin: auto 5px;
}
.single-image a {

}
.single-image img {
    max-width: 100%;
}
.single-message {
    margin: 1rem 0;
    max-width: 300px;
    left: 50%;
    position: relative;
    transform: translateX(-50%);
    display: table;
}
.single-message__entry {
    padding: 6px 12px;
    background: #fdf3d3;
    border: solid 1px lightgray;
    border-radius: var(--border-radius);
    text-align: center;
    width: fit-content;
}

.missing {
    color: red;
    filter: drop-shadow(0px 0px 4px red);
}

.button-actions {
    display: inline-block;
}
.form-actions-single {
    margin: 0.5rem;
}
.error {
    color: red;
}
input, textarea {
    font-family: var(--font-family);
    text-align: center;
    font-size: var(--font-size);
    margin: 0.3rem;
    border: solid 1px lightgray;
    border-radius: var(--border-radius);
}
textarea {
    height: fit-content;
}
body {
    font-family: var(--font-family);
    overflow-x: hidden;
    font-size: var(--font-size);
    width: 100vw;
    height: 100vh;
    margin: 0;
}
.loader {
    position: absolute;
    width: 100vw;
    height: 100vh;
    margin: 0;

}
.loader-ani {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(1px);
}
.background {
    position: fixed;
    width: 100vw;
    height: 100vh;
    margin: 0;
    opacity: 0.5;
    background: url(../img/background@2x.jpg) no-repeat center;
    background-size: auto 100%;
    background-blend-mode: multiply;
}
.hidden {
    display: none;
}
.visible {
    display: inherit;
}
.blur {
    filter: blur(1px);
    opacity: 0.9;
}
.headline {
    margin: 0 2em 3em auto;
    color: aliceblue;
    filter: drop-shadow(2px 4px 6px black);
}
.headline h1 {
    transform: rotate(9deg);
    margin: 0;
}
.headline p {
    padding: 0;
    margin: 0;
}
@media (orientation: landscape) {
form, .thanks, .error {
    width: 50vw;
}
.background{
    background-size: 100% auto;
}
}

@media (orientation: portrait) {
form, .thanks, .error {
    width: 80vw;
}
.background{
    background-size: auto 100%;
}
}
