html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center,dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

a:link, a:visited, a:hover {
    text-decoration: none;
}

@media screen and (max-width: 999px) {
    body {
        font-family: 'Arial', sans-serif;
        margin: 0;
        padding: 0;
    }
    
    main {
        min-height: 100vh;
        padding: 10px;
    }
    
    header {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    header img {
        height: 50px; /* Adjust the height as needed for mobile */
        padding-left: 10px;
    }
    
    header i {
        font-size: 30px;
        padding: 10px;
        transition: 0.3s;
    }
    
    header i:hover {
        transform: rotate(35deg);
    }

    nav {
        font-size: 16px;
    }
    
    nav ul {
        margin: 10px;
        text-align: center;
    }
    
    nav li {
        width: 100%;
        text-align: center;
    }
    
    nav li a {
        display: block;
        padding: 10px 0;
        background-color: #706f6d;
        color: #ffffff;
        transition: .3s;
    }
    
    nav li a:hover {
        transform: scale(1.1);
    }
    
    nav {
        height: 100%;
        width: 0;
        position: fixed;
        z-index: 3;
        top: 0;
        right: 0;
        background-color: #ffffff;
        overflow-x: hidden;
        padding-top: 80px;
        transition: 0.4s;
    }

    #menu {
        position: absolute;
        padding: 8px;
        top: 30px;
        right: 5px;
        font-size: 30px;
        color: #ffffff;
    }
    
    .closebtn {
        position: absolute;
        padding-left: 8px;
        top: 45px;
        right: 25px;
        font-size: 30px;
        color: #000000;
    }

    blockquote img {
        width: 100%;
        height: auto;
    }
    
    section {
        margin-bottom: 20px;
        padding: 15px;
        border: 1px solid #000000;
        border-radius: 15px;
    }
    
    section h2 {
        font-size: 30px;
        padding-bottom: 10px;
    }
    
    section h3 {
        font-size: 26px;
        padding: 10px 0;
    }
    
    section p {
        font-size: 20px;
        line-height: 2em;
    }
    
    .redirectButton {
        border: solid 1px #000000;
        border-radius: 25px;
        background-color: #ffffff;
        color: #000000;
        transition: .5s;
        padding: 10px;
        display: block;
        margin: 10px auto;
        text-align: center;
    }
    
    .redirectButton:hover {
        background-color: #c9c9c9;
    }
    
    section ul {
        padding-top: 10px;
    }

    form {
        border: 1px solid #000000;
        border-radius: 15px;
        padding: 20px;
        margin: 20px 0;
    }
    
    form p, form h2 {
        font-size: 20px;
        padding-bottom: 5px;
    }
    
    form input, form textarea {
        font-size: 16px;
        width: 100%;
        padding: 10px;
    }
    
    #submit {
        background-color: #a5a5a5;
        height: 35px;
        width: 100%;
    }
    
    footer {
        font-size: 20px;
        padding: 10px 0;
        border-top: solid #000000 2px;
        text-align: center;
    }    
}

@media screen and (min-width: 1000px) {
    main {
        display: grid;
        grid-template-columns: 1fr 18fr 1fr;
        grid-template-rows: 95px 50px auto auto auto 100px 25px;
        min-height: 100vh;
    }

    header {
        grid-row: 1/2;
        grid-column: 1/4;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
    }
    
    header img {
        height: 75px;
        padding-left: 20px;
    }
    
    header i {
     font-size: 45px;
     padding: 10px;
     transition: 0.3s;
    }

    header i:hover {
        transform: rotate(35deg);
    }

    #phoneNumber {
        position: relative;
        display: inline-block;
        border-bottom: 1px dotted black;
    }

    #phoneNumberText {
        padding: 10px;
    }

    #phoneNumber #phoneNumberText {
        width: max-content;
        background-color: black;
        color: #fff;
        text-align: center;
        top: -20px;
        left: 105%;
        border-radius: 6px;
        position: absolute;
        z-index: 1;
        transition: .4s;
    }

    #phoneNumber #phoneNumberText::after {
        content: " ";
        position: absolute;
        top: 50%;
        right: 100%;
        margin-top: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: transparent black transparent transparent;
    }

    .menu {
        display: none;
    }

    .closebtn {
        display: none;
    }

    h1 {
        font-family: 'Marck Script', cursive;
        font-size: 75px;
    }

    article p {
        font-family: 'Exo 2', sans-serif;
        font-size: 20px;
    }
    
    nav {
        grid-row: 2/3;
        grid-column: 2/3;
        font-family: 'Spline Sans Mono', monospace;
        font-size: 20px;
    }
    
    nav ul {
        margin: 10px;
        display: flex;
        justify-content: space-around;
        font-family: Arial, Helvetica, sans-serif;
    }
    
    nav li {
        width: 250px;
        text-align: center;
    }
    
    nav li a {
        display: block;
        background-color: #706f6d;
        padding: 5px 0px;
        color: #ffffff;
        transition: .3s;
    }
    
    nav li a:hover {
        transform: scale(1.1);
    }
    
    #currentPage {
        background-color: #1b1b1b;
        color: #ffffff;
    }

    blockquote {
        grid-row: 3/4;
        grid-column: 2/3;
        padding: 10px;
    }

    blockquote img {
        height: 100%;
        width: 100%;
    }
    
    #homePageHero {
        object-fit: cover;
        object-position: 0px -450px;
        height: 250px;
    }

    #aboutPageHero {
        object-fit: cover;
        object-position: 0px -25px;
        height: 250px;
    }

    #songListPageHero {
        object-fit: cover;
        object-position: 0px -350px;
        height: 250px;
    }

    #contactPageHero {
        object-fit: cover;
        object-position: 0px -230px;
        height: 400px;
    }
    
    section {
        margin-bottom: 20px;
    }
    
    section h2 {
        font-family: 'Raleway', sans-serif;
        font-size: 45px;
        padding-bottom: 5px;
    }

    section h3 {
        font-family: 'Exo 2', sans-serif;
        font-size: 30px;
        padding-top: 5px;
    }

    section p {
        font-family: 'Exo 2', sans-serif;
        font-size: 20px;
        line-height: 2em;
    }

    .strong {
        color: #706f6d;
        line-height: 1em;
    }

    section .redirectButton {
        border: solid 1px #000000;
        border-radius: 25px;
        background-color: #ffffff;
        font-family: Arial, Helvetica, sans-serif;
        color: #000000;
        font-size: 20px;
        transition: .5s;
        padding: 10px;
        float: right;
    }

    section .redirectButton:hover {
        background-color: #c9c9c9;
    }

    #section1 {
        grid-row: 4/5;
        grid-column: 2/3;
        border: 1px solid #000000;
        border-radius: 15px;
        padding: 35px;
    }

    #section2 {
        grid-row: 5/6;
        grid-column: 2/3;
        border: 1px solid #000000;
        border-radius: 15px;
        padding: 35px;
    }

    #songlistSection {
        grid-row: 4/5;
        grid-column: 2/3;
        border: 1px solid #000000;
        border-radius: 15px;
        padding: 35px;
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
    }

    section ul {
        padding: 10px;
        display: inline-block;
        white-space: nowrap;
        vertical-align: top;
    }

    section li {
        font-family: 'Exo 2', sans-serif;
        font-size: 18px;
        line-height: 1.65em;
    }

    form {
        grid-row: 4/5;
        grid-column: 2/3;
        border: 1px solid #000000;
        border-radius: 15px;
        padding: 35px;
        margin: 20px 0;
    }

    form p {
        font-family: 'Exo 2', sans-serif;
        font-size: 20px;
        padding-bottom: 5px;
    }

    form h2 {
        font-family: 'Raleway', sans-serif;
        font-size: 45px;
        padding-bottom: 5px;
    }

    form input, form textarea {
        font-size: 16px;
        font-family: Arial, Helvetica, sans-serif;
        width: 100%;
        padding: 10px;
    }
    
    #submit {
        background-color: #a5a5a5;
        height: 35px;
    }

    #address {
        display: none;
    }

    footer {
        grid-row: 10/11;
        grid-column: 1/4;
        font-family: 'Major Mono Display', monospace;
        font-size: 25px;
        padding: 10px 0;
        display: flex;
        justify-content: center;
        align-items: center;
        border-top: solid #000000 2px;
        width: 100%;
    }
}