:root {
    --header-bg-color: #1d1d1d;
    --services-bg-color: #ececec;
    --info-bg-color: #cf291d;
}

* {
    margin: 0;
    padding: 0;
}

/*div {
    border: 4px solid green;
}*/

h1 {
    margin: 0;
    font-family: 'Racing Sans One', cursive;
    font-size: 3em;
}

h2, h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5em;
    margin-bottom: 0.5em;
    font-weight: bold;
}

h3 {
    font-size: 2.8em;
}

li {
    font-family: 'Roboto', sans-serif;
    font-size: 2em;

}

p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.6em;
}

.section {
    padding: 2em;
}

.section-container {
    width: 75%;
    margin: auto;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

iframe {
	width: 90%;
}

/* HEADER */
#header {
    background-color: var(--header-bg-color);
    color: white;
}

#header i {
    color: #cf291d;
}

/* IMAGE GALLERY */
#slideshow {
    width: 100%;
    min-height: 600px;

    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0px -50px;
}

/* SERVICES SECTION */
#services {
    background-color: var(--services-bg-color);
}

#services ul {
    list-style-position: inside;
}

#services-right {
    justify-self: end;
    padding-top: 4em;
}

#services-right ul{
    padding-top: 3em;
}

#services-right h2{
    visibility: hidden;
}

/* INFO SECTION */
#info {
    background-color: var(--info-bg-color);
    color: whitesmoke;
}

#info p {
    margin-bottom: 1em;
}

#hours {
    justify-self: end;
}

/* FOOTER */
#footer {
    background-color: var(--header-bg-color);
    color: white;

    text-align: center;
}

#footer h2 {
    margin-bottom: 0.5em;
}

#facebook {
    color: #3C5A99;
}

@media only screen and (max-width: 1350px) {
    p {
        font-size: 1.4em;
    }

    #slideshow {
        background-position: 0px 0px;
    }
}

@media only screen and (max-width: 1150px) {
    .section-container {
        width: 90%;
    }
  }


@media only screen and (max-width: 768px) {
    h1, h2, h3, p, li {
        text-align: center;
    }
	
  	.section {
      	padding: 2em 0em;
  	}
  
  	.section-container {
   		width: 100%;
  	}
  	
    iframe {
        display: block;
        margin: auto;
      	margin-bottom: 2em;
    }

    .grid-container {
        grid-template-columns: 1fr;
    }

    #services-right {
        justify-self: normal;
    }

    #hours {
        justify-self: normal;
    }

    #footer p{
        margin-bottom: 2em;
    }
  }