*{
    border:0; padding:0; margin:0; box-sizing: border-box;
}

body{
    background-color: darkslategray;
}

header {
    height: 8vh;
    background-color: rgb(61, 32, 27);
}

h1{
    padding: 1vh 20px;
    font-size: 3.5em;
    text-shadow: #eee 0px 2px 2px;
    font-weight: bold;
}

nav {
    height: 5vh;
    display: flex;
    background-color: rgb(102, 74, 42);
    justify-content: center;
}

nav a{
    display: block;
    height: 5vh;
    text-decoration: none;
    font-size: 1.5em;
    color: black;
    margin: 0px 20px;
    width: 10vw;
    padding: 1.5vh 0px;
    font-weight: bold;
}

main {
    height: 75vh;
    background-image: url(/images/indie.jpg);
    background-size: cover;
}

table {
    width: 80vw;
    margin: 0px auto;
    border: 3px solid #222;
    border-collapse: collapse;
}

tr, td ,th {
    border: 3px solid #000;
}

tr {
    height:12.5vh;
    background-color: rgba(97, 96, 96, 0.815)
}

td {
    width: 12.5vh;
    position: relative;
}

th{
    font-size: 1.5em;
}

table p {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 1.3em;
}


#month {
    height: 6vh;
    margin-top: 10px;
}

#dayof {
    height: 5vh;
}

#fillo, #fillp {
    border: none;
}

th a {
    text-decoration: none;
    font-size: 1.5em;
    color: black;
}

#date{
    border: none;
    font-size: 2em;
    font-weight: bold;
    color: black;
}

td a {
    text-decoration: none;
    font-size: 1.3em;
    display: block;
    height: 12.5vh;
    width: 100%;
    padding-left: 1vh;
    color: #eee;
    text-shadow: black 2px 2px 2px;
}

.band{
    background-image: url(/images/live.jpg);
    background-size: cover;
}

.trivia{
    background-image: url(/images/trivia.jpg);
    background-size: cover;
    
}

.merch{
    background-image: url(/images/merch.jpg);
    background-size: cover;
}

.auction{
    background-size: cover;
    background-image: url(/images/guitar.jpg);
}

.band p, .trivia p, .merch p, .auction p{
    color: #eee;
    text-shadow: black 2px 2px 2px;
}

footer {
    min-height: 10vh;
    display: flex;
    justify-content: center;
    border-top: 2px black solid;
    background-color: rgb(78, 49, 38);
}

footer div {
    height: 10vh;
    width: 10vw;
    border-right: 1px black solid;
    margin:14px 5px;
}

footer div:last-child {
    border: none;
}

ul {
    margin: 5px;
}

li {
    list-style: none;
    margin: 2px;
}

li a {
    color: black;

}

@media screen and (max-width:1200px) {
    header {
        min-height: 10vh;
        width: 120vw;
    }

    nav{
        min-height: 10vh;
        width:120vw;
    }

    main {
        min-height: 60vh;
        width: 120vw;
    }

    footer{
        max-height: 40vh;
        width: 120vw;
    }
}

@media screen and (max-width:750px){
    h1{
        font-size: 2em;
    }

    nav a{
        font-size: 1.5em;
    }

    header {
        width: 200vw;
    }

    nav {
        width: 200vw;
        justify-content: left;
    }

    nav a{
        font-size: 1em;
    }

    main{
        width: 200vw;
    }

    footer{
        width: 200vw;
        height: 30vh;
    }

    footer div {
        width: 20%
    }
}