.ntr-regular {
  font-family: "NTR", sans-serif;
  font-weight: 400;
  font-style: normal;
}
nav{
    display: flex;
    justify-content: space-between;
    padding-left: 5vw;
    padding-right: 5vw;
    background-color: white;
}
.navlist{
    display: flex;
    justify-content:space-between;
    width: 80vw;
}
.navicon{
    width: 5vw;
    margin-top: 10px;
    margin-bottom: 10px;
}
.navlist > *{
    background-color: #00528a;
    margin-top: auto;
    margin-bottom: auto;
    width: 10vw;
    text-align: center;
    padding: 15px 10px;
    font-size: 1.6vw;
    color: #f5e598;
    text-decoration: none;
    font-weight: 800;
    border-radius: 4px;
}
.navlist>*:hover{
    background-color: black;
    padding: 17px 12px;
    transition: background-color 0.5s,
    padding 0.5s;
}
.navicon:hover{
    transform: rotate(360deg);
    transition: transform 1s;
}
body{
    background-color: #537dac;
}
.pagehead{
    text-align: center;
    color: #FFF;
    font-size: 5vw;
    margin-top: 15px;
    margin-bottom: 40px;
}
.pageimg{
    width: 32vw;
    border-radius: 10px;
}
.pgimgs{
    display: flex;
    justify-content: space-evenly;
}

