@import url('https://fonts.googleapis.com/css?family=Libre+Baskerville');

body{
    background-color: #f9f4de;
    font-family: 'Libre Baskerville', serif;
    font-size: 100%;
    animation: fadeIn 3s ease 0s 1 normal;
    -webkit-animation: fadeIn 3s ease 0s 1 normal;
    color: #39211f;
}
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
h1,h2,h3,h4{
    color: #39211f;
    font-family: 'Libre Baskerville', serif;
}
a, a:active, a:visited, a:focus{
    color: #39211f;
}
a:hover{
    color: #7f6361;
}
.top{
    margin-top: 3rem;
    max-width: 832px;
}
.nav{
    max-width: 36rem;
    line-height: 2em;
    margin: 0;
    padding: 2rem 0;
    text-align: right;
}
.top .nav{
    width: 24em;
    position: absolute;
    z-index: 1;
    text-align: left;
    padding: 2rem;
}

.nav li{
    display: inline-block;
    margin-right: 1rem;
}
.top .nav li.underline{
    display: block;
}
.underline{
    text-decoration: underline;
}
.top .hero{
    position: absolute;
    z-index: 0;
}
.nav_wrap{
    max-width: 40rem;
}
.logo{
    float: right;
    margin: 2rem 0;
    padding-left: 1rem;
    border-left: solid 2px #28231f;
}
.logo img{
    width: 72px;
}
.album{
    margin: 1rem auto;
}
.album_img{
    padding: 2rem 1rem;
}
.album_txt{
    padding: 2rem;
}
.album_txt h2{
    font-size: 1.3em;
    margin-bottom: 2rem;
}
.album_txt h2 span{
    font-size: 1.6em;
}
.album_txt p{
    font-size: .8em;
    line-height: 1.8em;
}
.button{
    background-color: #39211f;
    -webkit-border-radius: 1.5em;
    -moz-border-radius: 1.5em;
    border-radius: 1.5em;
    line-height: .6;
    width: 38%;
    margin: 1rem 1rem 0 0;
    font-family: 'helvetica', sans-serif;
    font-weight: bold;
}
.button:active,.button:visited,.button:focus{
    background-color: #39211f;
    color: #fff;
}
.button:hover{
    background-color: #7f6361;
}
.disco_wrap{
    background-image: url(./img/disco_bg.jpg);
    background-repeat: no-repeat;
    background-position: bottom right;
    padding-bottom: 8rem;
}

.disco, .disco_title{
    padding: 2rem;
}
.disco{
    padding-right: 8rem;
}
.disco_title h2{
    font-size: 1.5em;
    margin-left: 2rem;
}
.disco .column{
    text-align: center;
    margin-bottom: 1rem;
}
.disco img{
    max-width: 240px;
    width: 100%;
    padding: 1rem;
}
.disco p{
    font-size: .8em;
    text-align: center;
}
footer{
    font-size: .7em;
    text-align: center;
    margin: 3rem auto 1rem;
}
/* Medium */
@media only screen and (max-width: 40rem) {
    .top .nav{
        position: inherit;
        padding: 3rem 1rem;
        width: 100%;
    }
    .nav{
        width: 70%;
        float: left;
    }
    .top .hero{
        position: inherit;
    }
    .album_img{
        padding: 0;
    }
    .album_txt{
        padding: 2rem 0;
    }
    .button{
        width: 100%;
    }
    .disco{
        padding: 0;
        padding-right: 0;
    }
    .disco_title h2{
        margin-left: 0;
        text-align: center;
    }
}
