body {
    background: #151515;
    font-family: sans-serif;
}

h1,
h2,
h3,
h4,
p {
    text-align: center;
    color: #fff;
}

h2 {
    color: #fff;
}

p {
    color: #fff;
    margin-left: 10%;
    margin-right: 10%;
}

em {
    color: #3a2324;
    font-weight: bold;
}

nav {
    overflow: hidden;
    position: fixed;
    width: 100%;
    padding: 0;
    margin: 0;
    top: 0;
    left: 0;
}

section {
    text-align: center;
}

footer {
    border-top: 2px solid #000;
}

.navList {
    width: 100%;
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
}

.contact_methods_items {
    list-style: none;
    text-align: center;
}


.currentLinkNav {
    color: #fff;
    background-color: #000;
}

.currentLinkNav:hover {
    color: #000;
    background-color: #fff;
}

.otherPagesNav {
    color: #000;
    background-color: #d9cdcc;
}

.otherPagesNav:hover {
    background-color: #fff;
    color: #000
}

.navBarLink {
    text-decoration: none;
    color: #fff;
    height: 100%;
}

.logo {
    float: left;
    grid-area: logo;
    margin-top: 25px;
}

.title {
    border-bottom: 2px solid #d53809;
    color: #d53809;
    grid-area: title;
}

.numberedOrderedList {
    text-align: center;
    list-style-type: decimal;
    margin-left: 25%;
    margin-right: 25%;
}

.titleDiv {
    display: grid;
    grid-template: 'logo title blank';
}

.importantDate {
    font-weight: bold;
}

.linkNoStyle {
    color: inherit;
    text-decoration: inherit;
}

.liHorizontal {
    display: inline-block;
    text-align: center;
}

table, th, td {
    margin-left: 25%;
    margin-right: 25%;
    align-self: center;
    border: 1px solid black;
}


.container {
    position: relative;
    font-family: monospace;
    color: rgb(255, 255, 255);
    font-size: 2em;
    filter: contrast(15);
    justify-content: center;
}

.word {
    display: block;
    position: relative;
    animation: switch 10s 1 ease-in-out;
    min-width: 10%;
    justify-content: center;
    align-content: center;
}

.word:nth-child(1) {
    animation-delay: 0.5s;
    opacity: 0;
}

.word:nth-child(2) {
    animation-delay: -7s;
}


@keyframes switch {

    0%,
    5%,
    100% {
        filter: blur(0px);
        opacity: 1;
    }

    50%,
    80% {
        filter: blur(180px);
        opacity: 0;
    }
}

@keyframes switchOut {

    0%,
    5%,
    100% {
        filter: blur(0px);
        opacity: 1;
    }

    50%,
    80% {

        filter: blur(180px);
        opacity: 0;
    }
}

@keyFrames navAnimation {
    0% {
        filter: blur(180px);
        opacity: 0;
    }

    50%,
    100% {
        filter: blur(0px);
        opacity: 1;
    }
}

@keyFrames contentAnimation {
    0% {
        filter: blur(180px);
        opacity: 0;
    }

    50%,
    100% {
        filter: blur(0px);
        opacity: 1;
    }
}

.header {
    background-color: #151515;
    box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, .1);
    position: fixed;
    width: 100%;
    z-index: 3;
}

.header ul {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    background-color: #fff;
}

.header li a {
    display: block;
    padding: 20px 20px;
    border-right: 1px solid #f4f4f4;
    text-decoration: none;
}

.header li a:hover,
.header .menu-btn:hover {
    background-color: #f4f4f4;
}

.header .logo {
    display: block;
    float: left;
    font-size: 2em;
    padding: 10px 20px;
    text-decoration: none;
}

/* menu */

.header .menu {
    clear: both;
    max-height: 0;
    transition: max-height .2s ease-out;
}

/* menu icon */

.header .menu-icon {
    cursor: pointer;
    display: inline-block;
    padding: 28px 20px;
    position: relative;
    user-select: none;
}

.header .menu-icon .navicon {
    background: #aaa;
    display: block;
    height: 2px;
    position: relative;
    transition: background .2s ease-out;
    width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
    background: #fff;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}

.header .menu-icon .navicon:before {
    top: 5px;
}

.header .menu-icon .navicon:after {
    top: -5px;
}

/* menu btn */

.header .menu-btn {
    display: none;
}

.header .menu-btn:checked ~ .menu {
    max-height: 240px;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
    background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    top: 0;
}

@media (min-width: 48em) {
    .header li {
        float: left;

    }

    .header li ::after {
        content: "\a";
        white-space: pre;
    }

    .header li a {
        padding: 20px 30px;
    }

    .header .menu {
        clear: none;
        float: left;
        max-height: none;
    }

    .header .menu-icon {
        display: none;
    }
}