

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-image: url("images/light-grey-terrazzo.png");
}

#container {
    width: 1200px;
    margin: 20px auto;
    border: 2px solid green;
    border-radius: 25px;
    box-shadow: 4px 4px 5px hsla(0, 0%, 0%, 0.35);
}

#top {
    background-color: yellowgreen;
    padding: 10px;
    border-top-left-radius: 25px;
	border-top-right-radius: 25px;
}

.content {
    background-color: lightyellow;
    padding: 15px;
}

.faqcontent {
    background-color: lightyellow;
    padding: 15px;
    column-count: 3;
	column-width: 250px;
    column-rule: 2px solid green;
	column-gap: 30px;
}

section {
    background-color: lightyellow;
    padding: 10px;
    border-top: 2px solid green;
}

aside {
    background-color:wheat;
    padding: 10px;
    border-top: 2px solid green;
    border-bottom: 2px solid green;
}

footer {
    background-color:yellowgreen;
    padding: 10px;
    border-bottom-left-radius: 24px;
	border-bottom-right-radius: 24px;
}

nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: green;
    padding: 10px;
    padding-bottom: 0;
    text-align: center;
}

#center {
    text-align: center;
}

.gallery-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-left: 5%;
    margin-right: 5%;
  }
  
.gallery-column {
    display: flex;
    flex-direction: column;
}

@media screen and (max-width: 1200px) {
    body {
        background-color: white;
    }
    
    #container {
        width: 100%;
        margin: 0;
        border-radius: 0;
    }

    .content {
        padding: 0;
    }

    #top {
        border-top-left-radius: 0;
	    border-top-right-radius: 0;
    }

    footer {
        border-bottom-left-radius: 0;
	    border-bottom-right-radius: 0;
    }

    .gallery-row {
        justify-content: space-evenly;
        margin-left: 0;
        margin-right: 0;
    }
}

/*nav ul li {
    display: inline;
    list-style-type: none;
}*/