*,
*::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: 7% 50% 40%;
}

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

#anfahrt>div>iframe{
    height:180px;
    width:100%;
}

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

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

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

@media all and (max-width: 700px) {
    #anfahrt>p{
        font-size: 1.1rem;
    }
    
    #anfahrt>div>iframe{
    height:120px;
    width:100%;
}
    
}