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

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

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

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

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

#uebernachtung>p{
    line-height: 150%;
    font-size: 3vw;  
}

#uebernachtung>p>a{
    color: hsl(100, 100%, 100%);
}

#uebernachtung>p>a:hover{
    color: hsl(0, 81%, 88%);
}

@media all and (max-width: 700px) {
    #uebernachtung>p{
        font-size: 1.5rem;
    }
    
    h2{
    font-size: 2.7vw;
    }
}