body {
    background-color: #000;
    margin: 0;
    padding: 0;
    height: 100%;
}

header {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    width: auto;
    height: 150px;
    max-width: 100%;
}

nav {
    display: inline-block;
    text-align: center;
    width: 972px;
    height: 50px;
    max-width: 100%;
    max-height: 50px;
    border-style: none;
}

nav ul {
    display: inline-block;
    max-height: 50px;
    height: 50px;
    border-style: none;
}

.redtext {
    background-color: #d83500;
    opacity: 0.9;
    font-family: Gill Sans MT, Helvetica, Arial, sans-serif, "GillSans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed";
    font-weight: 500;
    font-size: 1.15em;
    text-align: left;
}

.music {
    width: auto;
    height: auto;
    max-width: 25%;
    float: left;
    border: 0;
    outline: none;
}

.about {
    width: auto;
    height: auto;
    max-width: 25%;
    float: left;
    border: 0;
    outline: none;
}

.news {
    width: auto;
    height: auto;
    max-width: 25%;
    float: left;
    border: 0;
    outline: none;
}

.contact {
    width: auto;
    height: auto;
    max-width: 25%;
    float: right;
    border: 0;
    outline: none;
}

#main-container {
    display: grid;
    grid-template-rows: 1fr 80px;
    height: calc(100vh - 400px);
    max-width: 972px;
}

#wrapper {
    width: auto;
    height: auto;
    background-color: #000;
    max-width: 972px;
    margin: auto;
}

#footer {
    bottom: 0;
    position: static;
    overflow: hidden;
    font-size: 0.99em;
    width: 100%;
    color: #fff;
    text-align: left;
    padding-top: 5px;
    padding-bottom: 5px;
    clear: both;
    bottom: 0;
}

#footer p {
    padding-left: 25px;
}

#wrapper #footer p {
    font-family: Georgia, "Times New Roman", Times, serif;
}

#img-container {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-end;
    margin-top: 250px;
    height: 50vh;
}

#banner {
    width: auto;
    height: auto;
    max-width: 100%;
}

#twit {
    float: right;
    width: auto;
    height: auto;
    max-width: 100%;
    /* padding-bottom: 30px; */
    /* margin-bottom: 30px; */
    padding-right: 26px;
    border: 0;
    outline: none;
}

#bc {
    float: right;
    padding-right: 10px;
    width: auto;
    height: auto;
    max-width: 100%;
    border: 0;
    outline: none;
}

#youtube {
    float: right;
    width: 30px;
    height: 30px;
    max-width: 30px;
    border: 0;
    outline: none;
}

#article {
    text-align: center;
    background-repeat: no-repeat;
    background-position: 60% 70%;
    overflow: visible;
    background-repeat: no-repeat;
    min-height: 500px;
    color: #fff;
    width: 100%;
    -webkit-animation: fadein 2s;
    /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 2s;
    /* Firefox < 16 */
    -ms-animation: fadein 2s;
    /* Internet Explorer */
    -o-animation: fadein 2s;
    /* Opera < 12.1 */
    animation: fadein 2s;
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Firefox < 16 */

@-moz-keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Safari, Chrome and Opera > 12.1 */

@-webkit-keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Internet Explorer */

@-ms-keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Opera < 12.1 */

@-o-keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

a:link {
    color: #000;
    text-decoration: none;
}

a:visited {
    color: #000;
    text-decoration: none;
}

a:hover {
    color: #000;
    text-decoration: none;
}

a:active {
    color: #000;
    text-decoration: none;
}

@media (min-device-width: 1000px) {
    #article {
        background-size: contain;
        background-position: 50% 50%;
    }
    #main-container {
        height: calc(100vh - 280px);
    }
}