@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@700&display=swap');

* {
    font-family: 'Quicksand', sans-serif;
}

div.gallery {
    margin: 20px;
    float: left;
    width: 150;
}

div.gallery: {
    width: 250px;
}

div.gallery img {
    max-width: 250px;
    height: auto;
    box-shadow: 6px 10px #000000;
}

div.desc {
    padding: 10px;
    text-align: center;
    font-size: large;
    font-weight: bold;
}

div.album-desc {
    padding: 10px;
    text-align: center;
    font-size: small;
    font-weight: light;
}

nav {
	list-style-type: none;
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: #8B0000; /* DarkRed (web colors) */
    height: 5%;
    overflow: auto;
    align-items: center;
}


li {
	float: left;
}

li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

li a {
    background-color: #111;
}

body {
	color: white;
	text-align: center;
}

h2 {
	font-style: oblique;
}

video {
  max-width: 80%;
  height: auto;
}



* {box-sizing: border-box;}

body {
  margin: 0;
}

.header {
  overflow: hidden;
  background-color: #f1f1f1; opacity: 0.5; filter: alpha(opacity=65)
  padding: 30px 20px;
}

.header a {
  float: left;
  color: black;
  text-align: center;
  padding: 10px;
  text-decoration: none;
  font-size: 16px;
  line-height: 20px;
  border-radius: 4px;
}

.header a.logo {
  font-size: 24px;
  font-weight: extra-bold;
}

.header a:hover {
  background-color: #ddd;
  color: black;
}

.header a.active {
  background-color: dodgerblue;
  color: white;
}

.header-right {
  float: right;
}

@media screen and (max-width: 500px) {
  .header a {
    float: none;
    display: block;
    text-align: left;
  }

  .header-right {
    float: none;
  }
}

body {
    background: url('../assets/images/bg.jpg') repeat;
    -webkit-animation: loader 12s steps(1000) infinite;
    -moz-animation: loader 12s steps(1000) infinite;
    -ms-animation: loader 12s steps(1000) infinite;
    -o-animation: loader 12s steps(1000) infinite;
    animation: loader 256s steps(1000) infinite;
}

@-webkit-keyframes loader {
  from {
    background-position: 100;
  }
  to {
    background-position: 200px 0;
  }
}
@-moz-keyframes loader {
  from {
    background-position: 0;
  }
  to {
    background-position: -1600px 0;
  }
}
@-ms-keyframes loader {
  from {
    background-position: 0;
  }
  to {
    background-position: -100px 0;
  }
}
@-o-keyframes loader {
  from {
    background-position: 0;
  }
  to {
    background-position: -800px 0;
  }
}
@keyframes loader {
  from {
    background-position: 0;
  }
  to {
    background-position: -800px 0;
  }
}
