* {
}
:root {
  --bg:#171219;
  --fg:#f2fbeb;
}

html {
  background:var(--bg);
  color:var(--fg);
  margin:auto 400px;
}

header {
  text-align:center;
  border:1px dashed var(--fg);
  padding:1%;
  margin: auto auto 2%;
}

img.logo {
  margin:auto auto -3%;
  padding:0%;
}

article.about {
  border-left:1px solid var(--fg);
  border-right:1px solid var(--fg);
  border-top:1px dashed var(--fg);
  border-bottom:1px dashed var(--fg);
  margin: auto 5%;
  padding: 2%;
}

article.links {
  height:100%;
  width:180px;
  position: fixed;
  top:0;
  left:0;
  border-left:1px solid var(--fg);
  border-right:1px solid var(--fg);
  border-top:1px solid var(--fg);
  border-bottom:1px solid var(--fg);
}

iframe {
  border:none;
}

.about h2 {
  margin: auto;
  text-align:center;
  border-bottom:1px solid var(--fg);
}

ul.links {
  border-top:1px dashed var(--fg);
  border-bottom:1px dashed var(--fg);
  list-style-type: none;
  margin: 5%;
  padding: 0;
  overflow: hidden;
}


li.link {
  text-decoration: none;
  padding: 6% 2%;
}

li.link:hover {
  border-top:1px solid var(--fg);
  border-bottom:1px solid var(--fg);
}

a:link{color:inherit}
a:active{color:inherit}
a:visited{color:inherit}
a:hover{color:inherit}


div.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
}

article.gallery-img {
  margin: 1%;
  border: 1px solid var(--fg);
  width: 192px;
}

article.gallery-img img {
  width: 192px;
  height: 192px;
  object-fit:cover;
}
article.gallery-img img:hover {
  transform:scale(2); /* this scales up the image when you hover over it */
  object-fit:contain; /* this keeps the aspect ratio of the original images*/
  width: 192px;
  height: auto;
  border: 1px dashed var(--fg);
}

article.gallery-img h2 {
  border-top:1px dashed var(--fg);
  text-align:center;
  margin:0;
  padding:0;
}
