@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,600italic,600,400italic,300italic,300);

html {
    height: 100vh;
}

body {
    font-family: "Open Sans", sans-serif;
    font-size: large;
    animation: fadeInAnimation ease-in 0.3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.bg-black {
    background-color: #000000 !important;
}

.text-navbar {
    color: #005cbf !important;
}

.text-navbar:hover {
    color: #bd2130 !important;
}

.text-slogan {
    font-family: "serif";
    color: white !important;
    text-shadow: black 0px 0px 10px;
    font-weight: 400;
}

.text-apcblue {
    font-family: "calibri", "serif";
    color: #4472c4 !important;
}