body {
  background-color: #c3d6de;
  font-family: 'Megrim', cursive;
  color: #333;
  text-align: center;
  font-size: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

header {
  background: url('header.jpg');
  background-position: cover;
  background-attachment: fixed;
  border: 3px solid #ffe073;
  height: 590px;
  margin: 50px 100px 20px 100px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

h1 {
  font-size: 100px;
  padding: 10px;
  margin: 10px;
  font-weight: bold;
  letter-spacing: 10px;
}

h1 span {
  background-color: #c3d6de;
  padding: 10px 20px;
  border: 3px solid #ffe073;
}

main {
  margin-bottom: 50px;
}

p {
  color: #ffe073;
}

footer {
  font-size: 26px;
  text-align: center;
  color: #ffe073;
}

/* latin */
@font-face {
  font-family: 'Megrim';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Megrim'), url(https://fonts.gstatic.com/s/megrim/v10/46kulbz5WjvLqJZVam_h.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --mainColor: #92A0A6;
}

a {
  background:
    linear-gradient(to bottom, var(--mainColor) 0%,
      var(--mainColor) 100%);
  background-position: 0 100%;
  background-repeat: repeat-x;
  background-size: 4px 4px;
  color: #333;
  text-decoration: none;
  transition: background-size .2s;
}

a:hover {
  background-size: 4px 50px;
}

*.unselectable {
  -moz-user-select: -moz-none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  /*
     Introduced in IE 10.
     See http://ie.microsoft.com/testdrive/HTML5/msUserSelect/
   */
  -ms-user-select: none;
  user-select: none;
}

p span {
  background-color: #92A0A6;
  padding: 2px;
}

.row {
  width: 80%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.row>.column {
  padding: 0 8px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Create four equal columns that floats next to eachother */
.column {
  float: left;
  width: 20%;
}

/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: #333;
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: transparent;
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 1200px;
}

/* The Close Button */
.close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

/* Hide the slides by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

.prev {
  left: 0px;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 20px;
  font-weight: bold;
  padding: 8px 12px;
  position: absolute;
  top: -35px;
}

/* Caption text */
.caption-container {
  text-align: center;
}

img.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

img.hover-shadow {
  transition: 0.3s;
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

div>img {
  border: 3px solid #92A0A6;
}

div>p {
  color: #FFF;
  font-size: 16px;
  font-family: courier new, serif;
  font-weight: lighter;
}

#mobile {
  display: none;
}

@media screen and (max-width: 480px) {
  #gallery {
    display: none;
  }

  header {
    background: url('');
    border: 0px;
    height: 50px;
    margin: 5px;
  }

  h1 {
    font-size: 16px;
    padding: 5px;
    font-weight: bold;
    letter-spacing: 5px;
    text-align: center;
  }

  h1 span {
    padding: 0px;
    border: 0px;
  }

  main {
    margin-bottom: 15px;
  }

  #mobile {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    font-size: 14px;
    text-align: left;
    padding: 4px;
  }

  a {
    margin-bottom: 4px;
  }

  footer {
    font-size: 12px;
  }
}