/* Reset CSS
 * --------------------------------------- */
 
* {
    box-sizing: border-box;
}

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,
form,fieldset,input,textarea,p,blockquote,th,td {
    padding: 0;
    margin: 0;

}
a{
  text-decoration:none;
  color: inherit;
}
table {
    border-spacing: 0;
}
fieldset,img {
    border: 0;
}
address,caption,cite,code,dfn,em,strong,th,var {
    font-weight: normal;
    font-style: normal;
}
strong{
  font-weight: bold;
}
nav ol, nav ul {
    list-style: none;
    margin:0;
    padding:0;
}
caption,th {
    text-align: left;

}
h1,h2,h3,h4,h5,h6 {
    font-weight: normal;
    font-size: 100%;
    margin:0;
    padding:0;
    color:#333;
}
q:before,q:after {
    content:'';
}
abbr,acronym { border: 0;
}

body {
    font-size: 14px;
    font-family: "League Spartan", sans-serif;
    background: #545346;
}

header {
    padding: 30px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

header ul {
    list-style: none;
    display: flex;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}

header ul li {
    padding: 0px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

header ul li a {
    transition: 0.2s;
}

    header ul li a:hover {
        color: #666;
    }

h1, h2 {
    font-family: "League Spartan", sans-serif;
    font-weight: 400;
    font-style: normal;
}

h2 {
    margin: 10px;
}

main em {
    font-style: italic;
}

footer {
    font-family: "League Spartan", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    padding: 20px;
    color: #fff;
}

.discog {
    display: flex;
    justify-content: center;
    margin: 0px auto;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
    font-size: 0; 
    line-height: 0;
    padding: 0px 30px;
}

    .discog > div {
        flex-basis: calc(100% / 2);
        padding: 20px;
        text-align: center;
    }

    @media screen and (max-width: 900px) {

        .discog > div {
            flex-basis: calc(100% / 2);
        }

    }

    @media screen and (max-width: 640px) {

        .discog > div {
            flex-basis: 100%;
        }

    }

    .discog > div img {
        border-radius: 10px;
        width: 100%;
        height: auto; 
        margin-bottom: 20px;
        transition: 0.2s;
    }

    .discog > div img:hover { 
        border-radius: 0px;
    }

    .discog > div h3 {
        color: #fff;
        font-size: 18px;
        line-height: 22px;
        font-weight: bold;
    }

    .discog > div p {
        color: #fff;
        font-size: 14px;
        line-height: 20px;
    }

    .discog a {
        font-weight: bold;
    }