html { 10px; }

@media (min-width: 0px) {
  p { font-size: 1rem; }
}

@media (min-width: 1000px) {
  p { font-size: calc(1rem + .25vw); }
}

/* @media (min-width: 2001px){
  p { font-size: 1.75rem; } */
}

h1 {32px}
@media (min-width: 0px) {
  h1 { font-size: 1.5rem; }
}

@media (min-width: 1000px) {
  h1 { font-size: calc( 1rem + .5vw); }
}

@media (min-width: 2001px){
  h1 { font-size: 2rem; }
}




body {
background-color: #000000;
margin: 5%;
padding: 2%;
box-sizing: border-box;
font-family: 'poppins', sans-serif;
font
background: rgba(0,0,0);
}

/* visited link */
a:visited {
  color: red;
}

/* unvisited link */
a:link {
  color: white;
}


.currentgallerycontainer {
width: 80%;
display: flex;
flex-wrap: wrap;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 25px 8%;
}

.currentgallery{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(266px, 1fr));
	grid-gap: 30px;
	align-items: center;
	
}

.currentgallery img{
width: 100%;
max-height: 100%;
align-self: center;

}


.oldgallerycontainer {
width: 90%;
display: flex;
flex-wrap: wrap;
flex-direction: row;
justify-items: start;
padding: 25px 8%;
}

.oldgallery{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(266px, 1fr));
	grid-gap: 30px;
	align-items: center;
	
}

.oldgallery img{
width: 100%;
max-height: 100%;
align-self: center;

}





