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

html, body {
    overflow: hidden;
}

body {
    background-color: rgb(50,50,50);
}

#canvas {
    background-image: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.2)), url("./_bg.webp");
    background-size: cover;
    background-position: center;
    height: 100vh;
    width: 100vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(0);
    transition: 1s filter ease-out;
}

.container{
    background: whitesmoke;
    padding: 50px 30px;
    box-shadow: 8px 8px 16px rgb(10,10,10);
    min-width: 300px;
    width: 30%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    border-radius: 24px;
    justify-content: center;
    align-items: center;
}

input {
    background: whitesmoke;
    font-size: 1.2em;
    padding: .1em .25em;
    margin-bottom: 0.4em;
    border-radius: 8px;
    width: 100%;
    border: none;
    outline: none;
    align-content: center;
    box-shadow: 1px 1px 4px  rgba(10,10,10,0.4) inset;
}

::-webkit-input-placeholder {
    text-align: center;
    font-size: 0.75em;
}
 
::-moz-placeholder {
    text-align: center;  
    font-size: 0.75em;
}
 
:-ms-input-placeholder {  
    text-align: center; 
    font-size: 0.75em;
}

.submit {
    background: whitesmoke;
    color: gainsboro;
    font-size: 1.4em;
    width: 100%;
    height: 30px;
    margin-top: 10px;
    border-radius: 8px;
    border: 1px lightgray solid;
    align-content: center;
    box-shadow: none;
    background: whitesmoke;
    cursor: default;
}

footer{
    flex: auto;
    flex-direction: row;
    font-size: 1.4em;
    background-color:rgba(0,0,0,0);
    color: thistle;
    opacity: 0.8;
    position: fixed;
    top: calc(100vh - 1.4em);
    text-align: right;
    padding-right: 0.7em;
    width: 100%;
    height: auto;
}

#attribution{
    font-size: 10pt;
    font-weight: 100;
    float: left;
    margin-left: 2rem;
    opacity: 0;
    transition: opacity 2000ms ease-in-out;
}

#siteIdent{
    font-size: 14pt;
    font-weight: 100;
    float: right;
    margin-right: 2rem;
    opacity 0;
    transition: opacity 2000ms ease-in-out;
}
