.nav-link{
    color: black;
    font-size: x-large;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin: 50px; 
}
.nav-link:hover{
    background-color: aqua;
    color: blue;
    font-size: larger;
}
nav{
    background-color: lightblue;
    max-width: 1300px;
    position: fixed;
    top: 0px;
    left: 0px;
}
body{
    background-color: coral;
}
p{
    font-size: x-large;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 50px;

}
ul{
    display: flex;
    justify-content: space-around;
}
ul li{
    font-size: x-large;
}


@media screen and (max-width: 1200px) {
.nav-link{
font-size: x-large;
}
h1{
    font-size: large;
}
h2{
    font-style: oblique;
}
}