/* Semantics */

a:link {
    color: rgb(243, 243, 242);
    text-decoration: underline;
}

a:visited {
    color: rgb(243, 243, 242);
    text-decoration: underline;
}

a:hover {
    color: rgb(243, 243, 242);
    text-decoration: underline;
}

a:active {
    color: rgb(243, 243, 242);
    text-decoration: underline;
}

body, html {
    background-color: #36802d;
}

header {
    background-color: rgb(87, 32, 7);
    border: 3px solid rgb(57, 2, 0);
    width: 100%;
    margin: 10px auto;
    box-sizing: border-box;
    text-align: center;
}

nav {
    height: 100%;
    background-color: #c9df8a;
    border: 3px solid rgb(201, 223, 100);
    font-family: 'Oswald', sans-serif;
    text-align: center;
}

nav a:link {
    color: #234d20;
    text-decoration: underline;
}

nav a:visited {
    color: #234d20;
    text-decoration: underline;
}

nav a:hover {
    color: #234d20;
    text-decoration: underline;
}

nav a:active {
    color: #234d20;
    text-decoration: underline;
}

footer a:link {
    color: #234d20;
    text-decoration: underline;
}

footer a:visited {
    color: #234d20;
    text-decoration: underline;
}

footer a:hover {
    color: #234d20;
    text-decoration: underline;
}

footer a:active {
    color: #234d20;
    text-decoration: underline;
}

section {
    background-color: #77ab59;
    border: 3px solid rgb(119, 171, 135);
    font-family: 'Merriweather', serif;
    width: 100%;
    margin: 10px auto;
    box-sizing: border-box;
    text-align: center;
}

article h2 {
    line-height: 1.5;
}

footer {
    background-color: #c9df8a;
    border: 3px solid rgb(201, 199, 97);
    font-family: 'Oswald', sans-serif;
    width: 100%;
    /*margin: 10px auto;*/
    font-size: 22px;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
}

h1 {
    font-size: 38px;
}

h2 {
    font-size: 26px;
}

ul {
    list-style-type: none;
    overflow: hidden;
    padding: 0;
}

li {
    /*float: left;*/
}

li a {
    padding: 30px;
}

/* Home */

article img {
    width: 70%;
    height: 70%;
    margin: 10px auto;
}

/* Bootstrap */

.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.embed-container iframe, .embed-container object, .embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Navigation bar */

.nav-text {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.nav-text a {
    font-size: 28px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.btn {
    background-color: #c9df8a;
    border: 3px solid rgb(201, 199, 97);
}

.btnContent {
    display: none;
    position: absolute;
    z-index = 1;
    background-color: #c9df8a;
    border: 3px solid rgb(201, 223, 188);
    vertical-align: middle;
}

.btnContent a {
    display: block;
    font-size: 18px;
}

.dropdown:hover .btnContent {
    display: block;
    z-index: 1;
}

.mobile-nav {
    display: none;
}

#mobile-links a {
    font-size: 26px;
}


/* Index */

.indexCols {
    display: flex;
    justify-content: center;
}

.sectionCol {
    flex: 1;
}

/* Bio */

.text-bio {
    font-size: 22px;
    line-height: 1.5;
    min-width: 280px;
}

/* Bands */

.bandImg {
    width: 50%;
}

.bands {
    display: flex;
    justify-content: center;
}

.bandCol {
    flex: 1;
}

/* Compositions */

.lineSpace iframe {
    margin-top: 15px;
}

/* Covers */

.video-grid {
    display: flex;
    justify-content: space-around;
}

#mobile-covers {
    display: none;
}

/* Something */

.musicButtons {
    display: flex;
}

.musicCol {
    flex: 1;
    text-align: center;
}

/* Calendar */

.calendar {
    width: 100%;
    height: 100%;
    margin: 10px auto;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
}

/* Contact */

/* Screen sizes */

@media screen and (max-width: 1200px) {
    .btn {
        font-size: 20px;
    }
    
    .video-grid iframe {
        width: 140px;
        height: 79px;
    }
}

@media screen and (max-width: 1000px) {
    .bands a {
        font-size: 14px;
    }
}

@media screen and (max-width: 800px) {
    footer {
        font-size: 16px;
    }
    
    h1 {
        font-size: 28px;
    }
    
    .nav-text a {
        font-size: 20px;
    }
    
    .musicCol a {
        font-size: 18px;
    }
    
    #youtube_video {
        height: 100px;
    }
}

@media screen and (max-width: 600px) {
    .bands {
        display: block;
    }
    
    .bands a {
        font-size: 10px;
        text-align: center;
    }
    
    .nav-text {
        display: none;
    }
    
    .mobile-nav {
        overflow: hidden;
        display: block;
        position: relative;
    }
    
    .mobile-nav #mobile-links {
        display: none;
    }
    
    .mobile-nav a {
        font-size: 16px;
        display: block;
    }
    
    .text-bio {
        font-size: 18px;
    }
    
    #desktop-covers {
        display: none;
    }
    
    #mobile-covers {
        display: block;
    }
}