@import url("footer.css");
@import url("navbar.css");

.extraInformation,.extraInformation a {
    color: rgb(121, 121, 121);
}

#pageLoadingOverlay {
    display: none;

    position: fixed;
    background-color: black;

    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    z-index: 10;

    opacity: 100;
    transition: opacity 400ms;
}

#pageLoadingOverlay.hidePageLoadingOverlay {
    opacity: 0;
    transition: opacity 400ms;
}