/* Generic styles */
html {
    scroll-behavior: smooth;
    font-family:Arial;
    font-size:16px;
    line-height:1.5
    overflow-x:hidden
/* Extract from normalize.css by Nicolas Gallagher and Jonathan Neal git.io/normalize */
    -ms-text-size-adjust:100%;
    -webkit-text-size-adjust:100%
/* W3.CSS 4.15 December 2020 by Jan Egil and Borge Refsnes */
    box-sizing:border-box
}

body{
    font-size:1rem;
/* Extract from normalize.css by Nicolas Gallagher and Jonathan Neal git.io/normalize */
    margin:0
}

header{
    margin-left: 10%;
    margin-right: 10%;
    margin-top: 1%;
    margin-bottom: 1%;
}

.title{
    font-size: 1.5rem;
    text-decoration: none;
}

.photoSetTitle{
    font-size: 2rem;
    text-align: center;
}

.photoSet{
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: maroon;
}

.imageDisplay{
    text-align: center;
    font-size: 1rem;
}

.imageDisplay img{
    vertical-align: middle;
    max-width: 75%;
    max-height: 900px;
}

p, h2{
    padding-left: 2%;
}

.title a:link {
    text-decoration: none;
    color: black;
}

.title a:visited {
    text-decoration: none;
    color: black;
}

.title a:hover {
    text-decoration: underline;
    color: red;
}

.title a:active {
    text-decoration: underline;
    color: red;
}


.menu-item{
    font-size: 1rem;
}

footer ul {
    height: auto;
    padding:  0.75em 0em;
    margin: 10px;
}

footer li { 
    display: inline; 
    padding: 1.75em; 
}

footer a {
    text-decoration: none;
    color: maroon;
    padding:  0.75em 0.75em 0.75em 0.75em;
}

footer a:hover {
    color: blue;
    background-color: white;
}

footer {
    text-align: center;
    postion:fixed;
    bottom:0;
    width: 100%;
    height: auto;
    font-weight: 100;
    background-color: white;
    margin: 1rem;
    padding: 1rem;
}


* {
  box-sizing: border-box;
}

.row {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Create four equal columns that sits next to each other */
.column {
  -ms-flex: 25%; /* IE10 */
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
  text-align: center;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column {
    -ms-flex: 50%;
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
  }
}


@media screen and (max-width: 800px) {
.imageDisplay img{
    vertical-align: middle;
    max-width: 90vw;

}
}

@media screen and (max-width: 600px) {
.imageDisplay img{
    vertical-align: middle;
    max-width: 95vw;

}
}

