#NavBar>img{
    height:150px;
    width:auto;
}
#NavBar{
    background-color:#B3E2FF;
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
nav{
margin-right: 35px;
}
nav>a{
    margin-left: 20px;
    text-decoration: none;
    color:#a83a00;
    font-size: 30px;
}
#Heading{
    background-color: #B3E2FF;
    text-align: center;
    color:#a83a00;
    padding:5px;
}
h1{
    font-size:50px;
    font-weight: bold;
}
h1+p{
    font-size: 25px;
    font-style: italic;
}
footer{
    text-align: center;
    margin-top:50px;
    margin-bottom: 20px;
}
body{
    background-color: aliceblue;
}
h2{
    font-size:30px;
    margin-bottom:5px;
}
footer{
    font-style: italic;
}
a:hover{
    color:#752900;
}
@media screen and (max-width: 700px) {
    #NavBar>img{
    height:100px;
}
footer{
    margin-top:20px;
    margin-bottom: 10px;
}
h1+p{
    font-size: 10px;
}
h1{
    font-size:30px;
}
nav>a{
    font-size: 20px;
}
}