.header {
    background-color: #000000;
    margin: 0;
    z-index: 2;
}

@keyframes fade-down {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

button {
    border: none;
    cursor: pointer;
    background-color: transparent;
}

body {
    background-color: #000000;
    font-family: sans-serif;
    margin: auto;
    width: 1500px;
}

.background {
    background-color: #000000;
}

.IE_logo {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 10%;
    animation: fade-down 0.6s;
}

.container {
    position: relative;
    box-sizing: border-box;
    z-index: 0;
}

.navbar {
    position: absolute;
    border-radius: 2px;
    left: 0;
    bottom: 400px;
    z-index: 2;
}

.navbar a {
    color: #FFFFFF;
    display: inline-block;
    font-size: 30px;
    padding-left: 20px;
    padding-right: 30px;
    text-decoration: none;
    text-shadow: 3px 3px 5px #000000;
    font-family: "Franklin Gothic Heavy", "Arial Narrow", Arial, sans-serif;
    animation: fade-down 0.6s;
}

.navbar a:hover {
    color: gray;
}

.archive_box {
    background-color: #737272;
    position: relative;
    width: 1500px;
    height: 500px;
    z-index: 1;
    margin-top: -400px;
}

.archive_box p {
    color: white;
    position: absolute;
    width: 800px;
    padding-top: 60px;
    padding-left: 60px;
    font-size: 22px;
}

.archive_title {
    color: white;
    position: absolute;
    top: -25px;
    left: 60px;
    font-size: 25px;
    text-shadow: 3px 3px 5px #000000;
    font-family: "Franklin Gothic Heavy", "Arial Narrow", Arial, sans-serif;
    z-index: 3;
}

.undermaintenance {
    position: absolute;
    left: 550px;
    top: 50px;
    width: 25%;
    animation: fade-down 0.6s;
}
