
body {
    grid-template: "img main ." 80vh / 50vw 348px auto;   
    background-color: #333;
}

body.loading {
     pointer-events: none;
    opacity: 0.45;
}

form {
    grid-area: main;
    align-self: center;
    justify-self: left;
    height: auto;
    display: grid;
    grid-gap: 16px;
}

img {
    width: 300px;
    align-self: center;
    justify-self: right;
    margin-right: 64px;
    margin-bottom: 40px;
    -webkit-filter: drop-shadow(8px 8px 8px rgba(0,0,0,0.7));
}

h2 {
    color: #bbb;
}
