* {
    box-sizing: border-box;
}

body {
  font-size: 16px;
  font-family: -apple-system, BlinkMacSystemFont, arial, sans-serif;
  line-height: 1.2;
  color: white;
}

h1, h2, h3, h4, h5 {
  padding-bottom: 1rem;
  font-family: arial, sans-serif;
  font-weight: lighter;
  color: white;
}

h1 {
  font-weight: lighter;
  padding-left: 1rem;
  font-size: 2.5rem;
}

h2 {
  text-align: center;
  font-weight: lighter;
  font-size: 1.5rem;
}

h3 {
  font-weight: lighter;
  font-size: 2rem;
  color: white;
}

h6 {
  text-align: center;
  font-weight: normal;
  font-style: normal;
  margin-left: 1rem;
  margin-top: .5rem;
}

p {
  padding-bottom: 1rem;
  font-family: sans-serif;
  color: white;
}

img {
  max-width: 100%;
  padding-top: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-top: 1rem;
}

img.link:hover {
  padding-bottom: 1rem;
  fill: white;
}
img.link {
  padding-bottom: 1rem;
}

ul, ol {
  margin-bottom: 1rem;
}

a {
  outline: none;
  text-decoration: none;
  color: white;
}

a:hover {
  color: white;
  -webkit-text-fill-color: transparent; /* Will override color (regardless of order) */
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: white;
  cursor: none;
}

.fixed-header {
  position: fixed;
  top: 1rem;
  z-index: 1;
}

.normal-header {
  margin-top: 3rem;
  padding-bottom: 0rem;
}

.hidden-header {
  margin-top: 3rem;
  visibility: hidden;
  padding-bottom: 0rem;
}

.container {
  display: flex;
}

.column {
  width: 50%;
  padding: 1rem;
}

.gallery {
  margin-bottom: 6rem;
}
.gallery:hover {
  background-image: url(assets/Untitled-1.png);
}

.nav {
  text-align: left;
}

.textfield {
  margin-left: 2rem;
  margin-right: 2rem;
}

main {
  padding-left: 2rem;
  padding-right: 2rem;
}

aside {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  padding: 1rem;
  width: 50%;
  display: flex;
  align-items: center;
}

.overlay-container {
  position: relative;
}

.overlay {
  display: block;
  position: absolute;
  padding: 0rem;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  filter: none;
}

.overlay-container:hover .overlay {
  display: none;
}

.info-container {
  position: relative;
}

.info {
  display: none;
  position: absolute;
  padding: 1rem;
  padding-top: 2rem;
  background-color: #dcd4cc;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  text-align: left;
  vertical-align: middle;
}

.info-container:hover .info {
  display: block;
}

::selection {
  background: white;
  color: #dcd4cc; /* WebKit/Blink Browsers */
}
::-moz-selection {
  background: white;
  color: #dcd4cc; /* Gecko Browsers */
}

#footer {
  margin-top: 3rem;
  padding: 1rem;
}

@media screen and (max-width: 300px) {
  #right { display: block; }  /* show it on small screens */
}
@media screen and (min-width: 0px) and (max-width: 1024px) {
  #right { display: none; }   /* hide it elsewhere */
}
@media screen and (min-width: 0px) and (max-width: 1024px) {
  #left { width: 100vw; }   /* full width*/
}


@media screen and (min-width: 300px) {
  #footer { display: none; }   /* hide it elsewhere */
}
@media screen and (min-width: 0px) and (max-width: 1024px) {
  #footer { display: block; }   /* hide it elsewhere */


@media screen and (min-width: 300px) {
    .overlay { display: block; }   /* hide it elsewhere */
  }
@media screen and (min-width: 0px) and (max-width: 1024px) {
    .overlay { display: none; }   /* hide it elsewhere */
