*{
    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;
}

#ide {
    text-align: center;
    font-size: 2em;
}

h2 {
    text-align: left;
}

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 {
    min-height: 75vh;
    background-image: url(/images/indie.jpg);
    background-size: cover;
}

#wrapper {
    background-color: rgba(238, 238, 238, 0.959);
    width: 70vw;
    min-height: 75vh;
    margin: 0px auto;
}

#note {
    font-size: 1.5em;
}

table {
    border-bottom: 1px solid#333;
    margin: 0px 20px;
}

table h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

p {
    font-size: 1.3em;
}

th {
    text-align: left;
    font-size: 2.5em;
}

th, td {
    width:20vw;
    padding: 1vh;
    margin:0px 10px;
}

.price {
    text-align: center;
}

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%
    }
}