/* TODO:
- display property
- HTML5 compliance
 */

@font-face {
    font-family: 'ds-digi';
    src: url(/font/DS-DIGI.ttf);
}
@font-face {
    font-family: 'la-belle-aurore';
    src: url(/font/LaBelleAurore.ttf);
}

* {
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: pixelated;
    image-rendering: optimize-contrast;
    -ms-interpolation-mode: nearest-neighbor;
}
body {
    margin: 0; 
    cursor: url("/img/cursor.png"), auto;
}
a, button {
    text-decoration: none;
    color: inherit; 

    cursor: url(/img/cursor2.gif) 36 10, auto;
}
select {
    outline: none;
    cursor: url(/img/cursor2.gif) 36 10, auto;
}
button {
    border-radius: 0;
}
section {
    position: relative;
    display: flex; 
    flex-direction: column;
    align-content: center;
}

#login-section {
    z-index: 1;
    position: fixed;
    align-items: center;
    background-image: url(/img/night.gif)
}
#login-section h1 {
    margin-top: 20vh;
    color: #d491fbab;
}
#login-section a {
    font-size: larger;
    text-align: center;
    display: inline-block;
    width: 5rem;
    font-weight: bold;
    padding: 0.4rem;
}
#login-section a:nth-of-type(1) {
    -webkit-text-stroke:  #989b00 1px;
    background-image: url(/img/clouds.jpg); 
    background-size: 50%;
}
#login-section a:nth-of-type(2) {
    background-image: url(/img/hell.png);
    -webkit-text-stroke: rgb(0, 0, 0) 2px;
    color: red;
}

#mail {
    cursor: url(/img/cursor2.gif) 36 10, auto;
    image-rendering: pixelated;
    width: 20rem;
    height: auto;
    margin: auto;
}
#mail-inside {
    min-width: 20rem;
    position: relative;
    margin: auto;
}
#mail-content {
    z-index: 1;
    background-image: url(/img/A097.JPG);
    background-repeat: repeat;
    width: 800px;
    margin: auto;
    padding: 2rem;
    box-sizing: border-box; /* make padding not add to element size */
    font-family: 'la-belle-aurore';

}

#radio {
    z-index: 2;
    pointer-events: auto;
    /* background-size: cover; */
    font-size: large;
    position: absolute;
    width: auto;
    height: 4rem;
    bottom: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#radio-img {
    position: absolute;
}
#radio-visor {
    position: absolute;
    font-family: 'ds-digi';
    background: #13053b;
    color: white;
    /* -webkit-text-stroke: black 1px; */
    border: none;
    appearance: none;
    left: 1.41rem;
    top: .85rem;
    height: 1.3rem;
    border-radius: .2rem;
}
#radio-buttons {
    position: absolute;
    width: max-content;
    bottom: 0.15rem;
    left: 7rem;
    font-size: large; /* idk why this changes anything */
}
#radio-buttons img {
    height: 1.1rem;
    width: auto;
    cursor: url(/img/cursor2.gif) 36 10, auto;
}

.center-x {
    margin-left: auto;
    margin-right: auto;
}

/* .center-content-y {
    justify-content: center;
} */

.fill-screen {
    width: 100dvw; 
    height: 100dvh;
}

.bg-video {
    width: 100dvw; 
    height: 100dvh;
    position: absolute;
    z-index: -1;
    object-fit: cover;
}

.hide {
    display: none !important;    
}
.hide-before-login {
    display: none;
}
.hide-before-mail {
    display: none;
}
.hide-before-poem-agree {
    display: none;
}

/* graphic / gif */
.g {
    position: absolute;
}
/* ribbon */
.r {
    position: absolute;
    border: none;
    width: 100%;
    height: 50px;
    background-position: bottom;
    /* object-fit: contain; */
    background-repeat:repeat-x;
    left: 0;
}
/* text */
.t {
    vertical-align: middle;
    text-align: center;
    display: inline-block;
}
/* text height */
.t-h {
    height: 1rem; 
}