html {
    overflow: hidden;
}


* {
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}


:root {
    --viewport-height: 100vh;
}


::selection {
    color: inherit;
    background: #ffe6f470;
}


a {
    color: inherit;
    text-decoration: none;
}


a:hover {
    font-style: italic;
}


p {
    margin: 6px 0 6px 0;
}


ul {
    list-style-type: none;
}


mark {
    font-family: spirit;
    background: #ffe6f470;
    color: #515151;
}


textarea {
    height: 26px;
    width: 90px;
    font-size: 10px;
}


body {
    min-height: var(--viewport-height);
    color: #515151;
    font-size: 10px;
    font-family: ms ui gothic;
    background-image: url(/media/bg/room.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position-y: center;
}


.fadeIn {
    animation-name: fadeIn;
    animation-duration: 1s;
    animation-fill-mode: both;
}


#page {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}


#container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: auto;
    background: transparent;
}


#page,
#container {
    min-height: var(--viewport-height);
}


#container-inner {
    background: #ffeff8;
    width: 820px;
    height: 640px;
    border-radius: 15px;
    padding: 2em;
}


.elements-class {
    height: 100%;
    width: 100%;
    background: white;
    padding: 1em;
}


header {
    text-align: center;
    font-family: angelic garden;
    font-size: 3em;
}


h1 {
    text-align: center;
    font-size: 11px;
    font-weight: normal;
}


.elements-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    justify-content: center;
    height: 561px;
}


.elements {
    width: 100%;
    padding: 2em;
}