h1 {
  font-family: 'Roboto', sans-serif;
}
body{
  font-family: 'Comic-Sans', sans-serif;
  min-width: 1024px;
  background-color: green;
}

header{
	display: flex;
justify-content: center;
align-items: center;
}

* {background-color: rgb(37, 150, 190)}

footer{
	background: blue;
}

span {
  font-size: 16px;
  background-color: black;
  color: white;
}

.framed {
border: 5px solid #000;
padding: 10px;
background-color: peachpuff;
}
		
body {
margin: 0;
display: flex;
justify-content: center;
align-items: top;
height: 180vh;
font-family: Arial, sans-serif;
		
}
		
.container {
max-width: 1050px;
width: 100%;
padding: 5px;
background-color: rgb(37, 150, 190);
border-radius: 20px;
}
	
img{
background-color: white;
border-radius: 20px;
}
	
	
.container2 {
width: 100%;
overflow: hidden;
}

.column {
width: 80%;
padding: 1%;
box-sizing: border-box;
}

.gallery {
display: flex;
flex-wrap: wrap;
gap: 6px;
justify-content: center;  
}

.gallery-item {
flex: 1 1 calc(10% - 20px);
box-sizing: border-box;
}

.gallery-item img {
height: auto;
display: block;
border-radius: 10px
}

.grid-gallery {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
gap: 40px;
}

.grid-gallery img {
width: 90%;
height: auto;
display: block;
border-radius: 10px;
}

nav ul {
list-style-type: none;
padding: 0; 
}

nav ul li {
margin-bottom: 5px;
padding: 2px;
}

.button {
background-color: white;
padding: 10px 470px;
border-radius: 5px;
width: 100px;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
}


nav ul li a:link {
color: green;
}

nav ul li a:visited {
color: purple;
}

nav ul li a:hover {
background-color: black;
color: white;
}

nav ul li a:active {
background-color: black;
color: yellow;
}


@media (max-width: 700px) {
.page-specific-container {
grid-template-columns: 1fr;
display: flex;
justify-content: center;
align-items: center;
}
}

@media (min-width: 700px) {
.page-specific-container {
display: flex;
flex-direction: row;
padding: 20px;
display: flex;
justify-content: center;
align-items: center;
}
nav {
flex: 1;
}
.page-specific-right {
flex: 3;
}
}

@media (min-width: 700px) and (max-width: 999px) {
.page-specific-container {
display: grid;
grid-template-columns: 1fr 1fr;
display: flex;
justify-content: center;
align-items: center;
}
nav {
grid-column: 1;
}
.page-specific-right {
grid-column: 2;
}
}

@media (min-width: 1000px) {
.page-specific-container {
width: 1200px;
margin: 0 auto;
display: flex;
flex-direction: row;
padding: 20px;
display: flex;
justify-content: center;
align-items: center;
}
nav {
flex: 1;
}
.page-specific-right {
flex: 3;
}
        