@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

body {
    color: #dcdcdc;
    background-color: #808080;
    font-family: 'Century Gothic', Arial;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #808080;
    font-family: "Century Gothic", Arial;
    font-weight: normal;
}

p {
    margin: 0;
}

.mainContainer {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: 100%;
}

.titleContainer {
    display: flex;
    flex-direction: row;
    margin: 0;
    align-items: center;
}

.navigatorAndContentContainer {
    flex-grow: 1;
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.navigatorContainer {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.navigationList {
    list-style-type: none;
    margin: 0;
    margin-top: 20px;
    padding: 0;
    min-width: 120px;
}

.navigationListItem {
    padding: 8px;
    text-decoration: none;
    border-bottom: 1px solid #dcdcdc;
}

.navigationListItem:hover {
    background: #ff9933;
}

.navigationLink {
    text-decoration: none;
    color: #dcdcdc;
    font-size: smaller;
    display: block;
}

.contentContainer {
    flex-grow: 1;
    padding: 10px;
    color: black;
    background-color: #DCDCDC;
    animation: fadeIn 0.5s;
}

.contentTitel {
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: left;
    font-size: xx-large;
    font-weight: normal;
    font-style: normal;
    color: #666666;
}

.paragraph {
    font-size: medium;
    font-weight: normal;
    color: #000000;
    margin-top: 20px;
}

.footer {
    font-size: x-small;
    padding: 10px;
    background-color: #808080;
    color: #DCDCDC;
}
