/*Class Styling*/
.navbar {
    height: 125px;
    width: 100vw;
    background-color: rgb(160, 85, 230);
    font-family: georgia;
    color: white;
    text-align: left;
    text-decoration: none;
    display: flex;
    border-bottom: solid rgb(101, 15, 182) 5px;
}
.navbar-icon {
    padding-top: 50px;
}
.navbar-link {
    color: white;
    text-decoration: none;
}
.navbar-link:hover {
    text-decoration: underline;
}
/*Generic Styling*/
body {
    background-color: rgb(245, 241, 250);
}
h1 {
    padding: 20px 30px;
}
h2 {
    padding: 26px 30px;
}