body {
    margin: 0px;
    background-color: aquamarine;
    font-family: Arial, Helvetica, sans-serif;

    display: flex;
    flex-direction: column;
    align-items: center;


    height: 100vh;
}

.RPIMTLogo {
    display: flex;
    /* align-items: center; */
}

.RPIMTLogo img {
    display: flex;
    align-items: center;
    height: 100px;
    width: 100px;
}

.TopNavi {
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    align-content: center;
    justify-content: center;

    background-color: #333333;
    width: 100%;

}

/* 
.TopNavi ul {
    display: flex;
    list-style: none;
    margin: 0 auto;         
    padding: 0;
    flex-wrap: wrap;        
} */


ul {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333333;

}

ul li a {

    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    width: 100px;


}

ul li a:hover {
    background-color: #111111;
}



@media (max-width: 768px) {
    .RPIMTLogo img {
        display: flex;
        align-items: center;
        height: 75px;
        width: 75px;
    }
}