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 (min-width: 641px) {
    main {
        display: grid;
        grid-template-columns: 35px 1fr 35px;
        grid-template-rows: 95px 50px auto auto auto auto auto auto 100px 25px;
        min-height: 100vh;
        max-width: 100vw;
        font-family: Arial, Helvetica, sans-serif;
    }

    header {
        grid-row: 1/2;
        grid-column: 1/4;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
    }

    #menu {
        display: none;
    }

    .closebtn {
        display: none;
    }

    header img {
        height: 75px;
        padding-left: 20px;
    }

    h1 {
        font-size: 6vw;
        font-family: 'Rubik Doodle Shadow', Arial, sans-serif;
    }

    article h3 {
        padding: 10px;
        font-size: 30px;
    }
    
    section h3 {
        padding-top: 15px;
        font-size: 30px;
    }

    nav {
        grid-row: 2/3;
        grid-column: 2/3;
        font-size: 20px;
    }

    nav ul {
        margin: 10px;
        display: flex;
        justify-content: space-around;
    }

    nav li {
        width: 150px;
        text-align: center;
    }

    nav li a {
        display: block;
        background-color: #706f6d;
        padding: 5px 0px;
        color: #ffffff;
        transition: .3s;
    }

    nav li a:hover {
        color: #000000;
        background-color: #c9c9c9;
        transform: scale(1.2);
    }

    #sidebar {
        background-color: #ececec;
        height: 100%;
        width: 0;
        position: fixed;
        z-index: 2;
        top: 0;
        left: 0px;
        overflow-x: hidden;
        transition: 0.3s;
        line-height: 2em;
        font-size: 25px;
        font-family: Arial, Helvetica, sans-serif;
    }

    #sidebar h2 {
        font-size: 30px;
    }

    #sidebar p {
        font-size: 20px;
        padding-left: 10px;
    }

    #sidebar a {
        font-size: 20px;
        color: #000000;
        padding-left: 10px;
    }

    #sidebar div {
        padding: 20px;
    }

    #sidebar button {
        background: none;
        color: inherit;
        border: none;
        padding-right: 10px;
        font: inherit;
        cursor: pointer;
        outline: inherit;
        text-align: end;
        width: 100%;
    }

    #sidebarOpen {
        z-index: 1;
        position: fixed;
        text-align: end;
        /* background: none; */
        background-color: #888888;
        /* color: inherit; */
        border: 1px solid #000000;
        border-radius: 10px;
        width: fit-content;
        padding: 10px 15px;
        margin-top: 85px;
        margin-left: -10px;
        /* font: inherit; */
        cursor: pointer;
        /* outline: inherit; */
        font-size: 30px;
    }

    #sidebarOpen i {
        padding-left: 10px;
    }

    section {
        margin-bottom: 20px;
    }

    section h2 {
        font-size: 45px;
        padding-bottom: 5px;
    }

    section p {
        font-size: 20px;
        line-height: 2em;
    }

    section img {
        height: 350px;
    }

    #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;
        display: inline-block;
        text-align: center;
    }

    #section2 img { 
        height: 315px;
        display: inline-block;
    }

    .slideshow-container {
        display: inline-block;
        position: relative;
        margin: auto;
    }

    .slideshow {
        display: none;
    }

    .prev, .next {
        cursor: pointer;
        position: absolute;
        top: 50%;
        width: auto;
        margin-top: -22px;
        padding: 16px;
        color: #ffffff;
        font-weight: bold;
        font-size: 18px;
        transition: 0.6s ease;
        border-radius: 0 3px 3px 0;
        user-select: none;
    }

    .next {
        right: 0;
        border-radius: 3px 0 0 3px;
    }

    .prev {
        left: 0;
    }

    .prev:hover, .next:hover {
        background-color: rgba(0,0,0,0.8);
    }

    .dot {
        cursor: pointer;
        height: 15px;
        width: 15px;
        margin: 0 2px;
        background-color: #bbb;
        border-radius: 50%;
        display: inline-block;
        transition: 0.6s ease;
    }

    .active, .dot:hover {
        background-color: #717171;
    }

    .fade {
        animation-name: fade;
        animation-duration: 1.5s;
    }

    @keyframes fade {
        from {opacity: .4}
        to {opacity: 1}
    }

    #section3 {
        grid-row: 6/7;
        grid-column: 2/3;
        border: 1px solid #000000;
        border-radius: 15px;
        padding: 35px;
    }

    #section4 {
        grid-row: 7/8;
        grid-column: 2/3;
        border: 1px solid #000000;
        border-radius: 15px;
        padding: 35px;
    }

    #section5 {
        grid-row: 8/9;
        grid-column: 2/3;
        border: 1px solid #000000;
        border-radius: 15px;
        padding: 35px;
    }

    form {
        grid-row: 4/5;
        grid-column: 2/3;
        border: 1px solid #000000;
        border-radius: 15px;
        padding: 35px;
        margin: 20px 0;
    }

    form label {
        margin-bottom: 15px;
    }

    form p {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 20px;
        padding-bottom: 5px;
    }

    form h2 {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 45px;
        padding-bottom: 5px;
    }

    form input, form textarea {
        font-size: 16px;
        font-family: Arial, Helvetica, sans-serif;
        width: 100%;
        border: #000000 2px solid;
    }

    #submit {
        background-color: #a5a5a5;
        height: 35px;
    }

    #address {
        display: none;
    }

    footer {
        grid-row: 11/12;
        grid-column: 1/4;
        font-size: 25px;
        padding: 10px 0;
        display: flex;
        justify-content: center;
        align-items: center;
        border-top: solid #000000 2px;
        width: 100%;
    }
}

@media screen and (max-width: 640px) {
    main {
        display: grid;
        grid-template-columns: 35px 1fr 35px;
        grid-template-rows: 95px 50px auto auto auto auto auto auto 100px 25px;
        min-height: 100vh;
        max-width: 100vw;
        font-family: Arial, Helvetica, sans-serif;
    }

    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;
    }

    h1 {
        font-size: 5.25vw;
        font-family: 'Rubik Doodle Shadow', Arial, sans-serif;
    }

    article h3 {
        padding: 10px;
        font-size: 30px;
    }

    section h3 {
        padding-top: 15px;
        font-size: 30px;
    }

    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: #000000;
    }
    
    .closebtn {
        position: absolute;
        padding-left: 8px;
        top: 45px;
        right: 25px;
        font-size: 30px;
        color: #000000;
    }

    nav {
        grid-row: 2/3;
        grid-column: 2/3;
        font-size: 20px;
    }

    nav ul {
        margin: 10px;
        display: flex;
        justify-content: space-around;
    }

    nav li {
        width: 150px;
        text-align: center;
    }

    nav li a {
        display: block;
        background-color: #706f6d;
        padding: 5px 0px;
        color: #ffffff;
        transition: .3s;
    }

    nav li a:hover {
        color: #000000;
        background-color: #c9c9c9;
        transform: scale(1.2);
    }

    #sidebar {
        background-color: #ececec;
        height: 100%;
        width: 0;
        position: fixed;
        z-index: 2;
        top: 0;
        left: 0px;
        overflow-x: hidden;
        transition: 0.3s;
        line-height: 2em;
        font-size: 25px;
        font-family: Arial, Helvetica, sans-serif;
    }

    #sidebar h2 {
        font-size: 30px;
    }

    #sidebar p {
        font-size: 20px;
        padding-left: 10px;
    }

    #sidebar a {
        font-size: 20px;
        color: #000000;
        padding-left: 10px;
    }

    #sidebar div {
        padding: 20px;
    }

    #sidebar button {
        background: none;
        color: inherit;
        border: none;
        padding-right: 10px;
        font: inherit;
        cursor: pointer;
        outline: inherit;
        text-align: end;
        width: 100%;
    }

    #sidebarOpen {
        z-index: 1;
        position: fixed;
        text-align: end;
        /* background: none; */
        background-color: #888888;
        /* color: inherit; */
        border: 1px solid #000000;
        border-radius: 10px;
        width: fit-content;
        padding: 10px 15px;
        margin-top: 85px;
        margin-left: -10px;
        /* font: inherit; */
        cursor: pointer;
        /* outline: inherit; */
        font-size: 30px;
    }

    #sidebarOpen i {
        padding-left: 10px;
    }

    section {
        margin-bottom: 20px;
    }

    section h2 {
        font-size: 45px;
        padding-bottom: 5px;
    }

    section p {
        font-size: 20px;
        line-height: 2em;
    }

    section img {
        height: 200px;
    }

    #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;
        display: inline-block;
        text-align: center;
    }

    #section2 img { 
        height: 245px;
        display: inline-block;
    }

    .slideshow-container {
        display: inline-block;
        position: relative;
        margin: auto;
    }

    .slideshow {
        display: none;
    }

    .prev, .next {
        cursor: pointer;
        position: absolute;
        top: 50%;
        width: auto;
        margin-top: -22px;
        padding: 16px;
        color: #d7d7d7;
        font-weight: bold;
        font-size: 18px;
        transition: 0.6s ease;
        border-radius: 0 3px 3px 0;
        user-select: none;
    }

    .next {
        right: 0;
        border-radius: 3px 0 0 3px;
    }

    .prev {
        left: 0;
    }

    .prev:hover, .next:hover {
        background-color: rgba(0,0,0,0.8);
    }

    .dot {
        cursor: pointer;
        height: 15px;
        width: 15px;
        margin: 0 2px;
        background-color: #bbb;
        border-radius: 50%;
        display: inline-block;
        transition: 0.6s ease;
    }

    .active, .dot:hover {
        background-color: #717171;
    }

    /* Fading animation */
    .fade {
        animation-name: fade;
        animation-duration: 1.5s;
    }

    @keyframes fade {
        from {opacity: .4}
        to {opacity: 1}
    }

    #section3 {
        grid-row: 6/7;
        grid-column: 2/3;
        border: 1px solid #000000;
        border-radius: 15px;
        padding: 35px;
    }

    #section4 {
        grid-row: 7/8;
        grid-column: 2/3;
        border: 1px solid #000000;
        border-radius: 15px;
        padding: 35px;
    }

    #section5 {
        grid-row: 8/9;
        grid-column: 2/3;
        border: 1px solid #000000;
        border-radius: 15px;
        padding: 35px;
    }

    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: Arial, Helvetica, sans-serif;
        font-size: 20px;
        padding-bottom: 10px;
    }

    form h2 {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 45px;
        padding-bottom: 5px;
    }

    form input, form textarea {
        font-size: 22px;
        font-family: Arial, Helvetica, sans-serif;
        width: 100%;
        border: #000000 2px solid;
    }

    #submit {
        background-color: #a5a5a5;
        height: 35px;
    }

    #address {
        display: none;
    }

    footer {
        grid-row: 11/12;
        grid-column: 1/4;
        font-size: 25px;
        padding: 10px 0;
        display: flex;
        justify-content: center;
        align-items: center;
        border-top: solid #000000 2px;
        width: 100%;
    }
}

@media screen and (min-width: 1251px) {
    main {
        display: grid;
        grid-template-columns: 1fr 18fr 1fr;
        grid-template-rows: 95px 50px auto auto auto auto auto auto 100px 25px;
        min-height: 100vh;
        font-family: Arial, Helvetica, sans-serif;
    }

    header {
        grid-row: 1/2;
        grid-column: 1/4;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
    }

    #menu {
        display: none;
    }

    .closebtn {
        display: none;
    }

    header img {
        height: 75px;
        padding-left: 20px;
    }

    h1 {
        font-size: 75px;
        font-family: 'Rubik Doodle Shadow', Arial, sans-serif;
    }

    article h3 {
        padding: 10px;
        font-size: 30px;
    }

    section h3 {
        padding-top: 15px;
        font-size: 30px;
    }

    nav {
        grid-row: 2/3;
        grid-column: 2/3;
        font-size: 20px;
    }

    nav ul {
        margin: 10px;
        display: flex;
        justify-content: space-around;
    }

    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 {
        color: #000000;
        background-color: #c9c9c9;
        transform: scale(1.2);
    }

    #sidebar {
        background-color: #ececec;
        height: 100%;
        width: 0;
        position: fixed;
        z-index: 2;
        top: 0;
        left: 0px;
        overflow-x: hidden;
        transition: 0.3s;
        line-height: 2em;
        font-size: 25px;
        font-family: Arial, Helvetica, sans-serif;
    }

    #sidebar h2 {
        font-size: 30px;
    }

    #sidebar p {
        font-size: 20px;
        padding-left: 10px;
    }

    #sidebar a {
        font-size: 20px;
        color: #000000;
        padding-left: 10px;
    }

    #sidebar div {
        padding: 20px;
    }

    #sidebar button {
        background: none;
        color: inherit;
        border: none;
        padding-right: 10px;
        font: inherit;
        cursor: pointer;
        outline: inherit;
        text-align: end;
        width: 100%;
    }

    #sidebarOpen {
        z-index: 1;
        position: fixed;
        text-align: end;
        /* background: none; */
        background-color: #888888;
        /* color: inherit; */
        border: 1px solid #000000;
        border-radius: 10px;
        width: fit-content;
        padding: 10px 20px;
        margin-top: 35px;
        margin-left: -10px;
        /* font: inherit; */
        cursor: pointer;
        /* outline: inherit; */
        font-size: 45px;
    }

    #sidebarOpen i {
        padding-left: 10px;
    }

    blockquote {
        grid-row: 3/4;
        grid-column: 2/3;
        padding: 10px;
    }

    blockquote img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 0px -25px;
    }

    section {
        margin-bottom: 20px;
    }

    section h2 {
        font-size: 45px;
        padding-bottom: 5px;
    }

    section p {
        font-size: 20px;
        line-height: 2em;
    }

    #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;
        display: inline-block;
    }

    #section2 img { 
        height: 450px;
        display: inline-block;
    }

    .slideshow-container {
        display: inline-block;
        position: relative;
        margin: auto;
    }

    .slideshow {
        display: none;
    }

    .prev, .next {
        cursor: pointer;
        position: absolute;
        top: 50%;
        width: auto;
        margin-top: -22px;
        padding: 16px;
        color: #000000;
        font-weight: bold;
        font-size: 18px;
        transition: 0.6s ease;
        border-radius: 0 3px 3px 0;
        user-select: none;
    }

    .next {
        right: 0;
        border-radius: 3px 0 0 3px;
    }

    .prev:hover, .next:hover {
        background-color: rgba(147, 147, 147, 0.8);
    }

    .dot {
        cursor: pointer;
        height: 15px;
        width: 15px;
        margin: 0 2px;
        background-color: #bbb;
        border-radius: 50%;
        display: inline-block;
        transition: 0.6s ease;
    }

    .active, .dot:hover {
        background-color: #717171;
    }

    .fade {
        animation-name: fade;
        animation-duration: 1.5s;
    }

    @keyframes fade {
        from {opacity: .4}
        to {opacity: 1}
    }

    #section3 {
        grid-row: 6/7;
        grid-column: 2/3;
        border: 1px solid #000000;
        border-radius: 15px;
        padding: 35px;
    }

    #section4 {
        grid-row: 7/8;
        grid-column: 2/3;
        border: 1px solid #000000;
        border-radius: 15px;
        padding: 35px;
    }

    #section5 {
        grid-row: 8/9;
        grid-column: 2/3;
        border: 1px solid #000000;
        border-radius: 15px;
        padding: 35px;
    }

    form {
        grid-row: 4/5;
        grid-column: 2/3;
        border: 1px solid #000000;
        border-radius: 15px;
        padding: 35px;
        margin: 20px 0;
    }

    form label {
        margin-bottom: 15px;
    }

    form p {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 20px;
        padding-bottom: 5px;
    }

    form h2 {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 45px;
        padding-bottom: 5px;
    }

    form input, form textarea {
        font-size: 16px;
        font-family: Arial, Helvetica, sans-serif;
        width: 100%;
        border: #000000 2px solid;
    }

    #submit {
        background-color: #a5a5a5;
        height: 35px;
    }

    #address {
        display: none;
    }

    footer {
        grid-row: 11/12;
        grid-column: 1/4;
        font-size: 25px;
        padding: 10px 0;
        display: flex;
        justify-content: center;
        align-items: center;
        border-top: solid #000000 2px;
        width: 100%;
    }
}