*,
*::after,
*::before{
	box-sizing: border-box;
}
html,body{
    font-family: "Times New Roman";
	font-size: 30px;
    height: 100%;
    width: 100%;
    margin: 0;
    color: hsla(100,100%,100%,1);
}

main{
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 20% 40% 30%;
    justify-content: space-evenly;
}

h2{
    font-family: "Engravers MT";
    font-size: 4vw;
    color:hsl(54, 0%, 89%);
}

main>img{
    height: 100%;
    width: 100%;
    z-index: -1;
    position: absolute;
}

#formular{
    text-align: center;
    margin: auto;
    width:70%;
    height: 100%;
    grid-row: 2/3;
}

.rand{
    border: 2px solid hsl(54, 100%, 70%);
}

@media all and (max-width: 600px) {
    html,body{
        font-size: 20px;
    }
    
}