* {
    margin: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: antialiased;
}

html, body {
    background-color: #111;
    height: 100%;
    width: 100%;
    color: #efefef;
    overflow: hidden;
}

.backdrop {
    background-image: url('images/2980527.jpg');
    background-size: cover;
    background-position-x: center;
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 0;
    filter: blur(4px) saturate(40%);
}

.content {
    padding-top: 40px;
    padding-bottom: 40px;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(8, 1fr);
    filter: drop-shadow(3px 3px 3px #111);
}

.content .socials {
    grid-column: 3 / 7;
    grid-row: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-gap: 1vw;
    max-height: 100px;
}

.content .socials a {
    color: #efefef;
    text-align: center;
}

.content .socials i:hover, .articles article p a:hover, footer .wrapper img:hover {
    color: rgb(63, 119, 49) !important;
    transition: 0.2s;
    filter: drop-shadow(0px 0px 5px #111);
}

.content .logo {
    border: 4px solid #efefef;
    border-radius: 0.4em;
    grid-column: 3 / 7;
    grid-row: 3 / 7;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: xx-large;
    font-kerning: none;
    letter-spacing: 2vw;
    text-transform: uppercase;
    user-select: none;
}

.gridcontainer {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 16fr) minmax(0, 2fr);
    height: 100%;
}

.articles {
    grid-column: 3 / 7;
    grid-row: 8;
    display: grid;
    grid-template-columns: 40% 60%;
    grid-template-rows: 1fr;
    text-align: left;
}

.articles article {
    letter-spacing: 2px;
}

.articles article img {
    max-width: 154px;
    object-fit: contain;
}

#albumlogo {
    display: block;
}

.articles article h2 {
    text-decoration: none;
    font-weight: normal;
}

.articles article p a {
    text-decoration: underline;
    color: inherit;
}

footer {
    background-color: #111;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: 4fr 1fr 1fr;
    z-index: 2;
}

footer .wrapper {
    display: grid;
    grid-column: 3 / 7;
    grid-row: 1;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: 1fr;
}

footer .wrapper a {
    display: inherit;
}

footer .wrapper img {
    max-height: 75%;
    width: 80%;
    object-fit: scale-down;
    filter: grayscale(100%);
    justify-self: center;
    align-self: center;
}

footer .copyright {
    grid-column: 4 / 6;
    grid-row: 2;
    text-align: center;
    color: #efefef;
    filter: drop-shadow(5px 5px 5px #111);
}

@media only screen and (max-width: 807px) {
    .content {
        grid-template-columns: none;
        padding-left: 40px;
        padding-right: 40px;
    }

    footer {
        background-color: #111;
        display: grid;
        grid-template-columns: none;
        grid-template-rows: 4fr 1fr 1fr;
        z-index: 2;
    }

    .articles {
        grid-column: 3 / 7;
        grid-row: 8;
        display: grid;
        grid-template-columns: 100%;
        grid-template-rows: 1fr;
        text-align: center;
    }

    #albumlogo {
        display: none;
    }
}

@media only screen and (min-width: 1250px) {
    .content .socials {
        grid-column: 3 / 7;
        grid-row: 1;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 1fr;
    }

    .articles {
        grid-column: 4 / 6;
        grid-row: 8;
        display: grid;
        grid-template-columns: 1fr 2fr;
        grid-template-rows: 1fr;
        text-align: left;
    }

    .articles article {
        letter-spacing: 4px;
    }
}

