@font-face {
  font-family: "titlefont";
  src: url("font/Segan-Light.ttf");
} 

body {
  color: #333;
  margin: 10vw;
  margin-top: 5vw;
  font-family: sans-serif;
  font-size: 1em;
  background: #fff;
}

a:link, a:visited, a:active {
  color: #466c8d;
  text-decoration: none;
}

a:hover {
  color: #000;
}

main {
width: 55vw;
align: center;
font-size: 2em;
}

h1 {
  font-size: 4em;
  color: #000;
  font-family: sans-serif, sans;
}

h2 {
  font-size: 2em;
  color: #000;
}
       
 /* Gallery */

.grid {
    display: grid;
    grid-template-columns: repeat(2, 400px);
/*    justify-content: center;
    align-content: center;*/
    grid-gap: 10px;
}

.grid img {
    width: 400px;
    height: 400px
}

/* Lightbox */

.imgbox img {
    width: 100%;
}

.imgbox {
    margin: 1em;
    text-align: center;
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100%;
    text-align: center;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.85);
}

.lightbox img {
    max-height: 80%;
    width: auto;
    margin-top: 2%;
}

.lightbox:target {
    outline: none;
    display: block;
}
