/*sets the entire page as the site, should not be used again*/
.all {
    height: 100vh;
    width: 100vw;
    border: 0;
    margin: 0;
    overflow: hidden;
    scroll-behavior: smooth;
}

/*sets the entire page as the site and background, should not be used again*/
.topBody {
    height: 100vh;
    width: 100vw;
    border: 0;
    margin: 0;
    overflow: hidden;
    background-image: url("../img/hubimg.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100%;
    background-color: black;
}

/*contains the site itself on top of the background, should not be used again*/
.site {
    position: absolute;
    height: 100vh;
    width: 100vw;
    top: 17vh;
}

/*sets location for the nav bar at the top and colours it*/
.topNavbar {
    height: 13vh;
    background-color: darkcyan;
}

/*sets the style for the top navbar titles*/
.topNavbarTitle {
    margin: 0;
    padding-top: 2vh;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 2vh;
    text-align: center;
    width: 14vw;
    float: left;
    position: relative;
    vertical-align: middle;
    color: black;
}

/*sets the style for the top navbar titles divs*/
.topNavbarTitleDiv {
    background-color: rgb(7, 80, 80);
    position: relative;
    top: 0;
}

/*makes it so all the navbar titles are aligned*/
.topNavbarTitleSmall {
    padding-top: 1.5vh;
    padding-bottom: 1vh;
}

.content {
    height: 100vh;
}

.shallowContent {
    height: 100vh;
}

.home {
    text-align: center;
    width: 40vw;
    background-color: white;
    margin-left: 25vw;
    margin-right: 25vw;
    padding: 5vmax;
    border-radius: 20vh;
    margin-top: 13vh;
}