@charset "utf-8";
/* CSS Document */
html, body, h1, p, ul {
    margin: 0px;
    padding: 0px;
}

html, body {
    height: 10vh;
}

html{
	width: 100%;
	height: 100%;
	background-image: url("../images/lanternbig.jpg");
	background-repeat: repeat;
	background-size: cover;
	margin-top: -110px;
}
#logo {
	width: 9%;
	padding: 3px;
	position: absolute;
	margin-left: 52px;
	margin-top: 134px;
}
.container{
display: flex;
align-items:center;
justify-content: center;
float: right;
padding-right: 10px;
postion: relative; 
}
nav{
	position: absolute;
	left: 0;
	top: 58px;
	width: 100%;
	height: 79px; 
	text-align: center;
	transition: 1s;
	z-index: 100000; 
}

nav a {
	display: inline-block;
	text-align: center;
	color: white;
	text-shadow: 2px 2px 5px black;
	text-decoration: none;
	float: right;
	padding-top: 20px;
	padding-right: 20px;
	padding-left: 69px;
	padding-bottom: 101px;
	font-size: 1.7em;
	font-weight: bold;
	font-family: 'Merriweather Sans', sans-serif;
}


nav a:hover, nav a:active, nav a:focus {
color: rgba(216,140,76,1.00);
text-decoration: none;
transition: 1s;
}


nav a:hover, nav a:active, nav a:focus {
color: rgba(198,135,8,1.00);
text-decoration: none;
display: block;
transition: 1s;
}



.dropdown-container:hover .dropdown-one {
visibility: visible; 
}

.dropdown-one {
	display: block;
	width: 100px; 
	position: absolute; 
	visibility: hidden; 
	top: 60%;
	margin-top: 23px;
	margin-right: -24px;
	margin-left: -24px;
	margin-bottom: -4px;
	padding: 0;
	list-style-type: none;
	list-style-image: none; /* I hope you change this one. Lol! */
}

.dropdown-one li {
display: block;
}

.dropdown-one li a {
display: block;
float: none; /* Make sure the buttons stacked vertically. */
width: 150px; /* A size that seemed to fit the content best. Adjust as needed. */
}

h1{
	padding-top: 432px;
	color: white;
	top: 312px;
	left: 87px;
	font-size: 7.5em;
	z-index: 1;
	font-family: "proxima-nova", sans-serif;
	font-weight: bold;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	text-shadow: 2px 5px 5px black;
}
.center{
	text-shadow: 2px 3px 9px black;
	font-family: "proxima-nova", sans-serif;
	color: white;
	font-size: 1.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding-top: 16px;
	padding-right: 30px;
	padding-left: 30px;
	padding-bottom: 30px;
}
/* bro what the hell is this monster */
body {
  background: #eee;
}

.gallery {
  --size: min(50vmin, 600px);
	position: absolute;
	top: 113%;
	left: 50%;
	transform: translate(-50%, -50%);
	box-shadow: 0 0 10px #0002,
    0 20px 40px -20px #0004;
	width: 1000px;
	height: 1000px;
	background: #fff;
	border: 6px solid #fff;
	display: grid;
	grid-template-rows: 50% 50%;
	grid-template-columns: 1fr 1fr;
	overflow: hidden;
	gap: 6px;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes moveHorizontal {
  to {
    object-position: 100% 0;
  }
}

@keyframes moveVertical {
  to {
    object-position: 0 100%;
  }
}

@keyframes shrinkVertical {
  to {
    height: 0;
  }
}

@keyframes shrinkHorizontal {
  to {
    width: 0;
  }
}


@keyframes growHorizontal {
  to {
    width: 100%;
  }
}
@keyframes growHorizontal2 {
  to {
    width: 70%;
  }
}

@keyframes growVertical {
  to {
    height: 100%;
  }
}


@keyframes growAll {
  to {
    width: 100%;
    height: 100%;
  }
}

.gallery img:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
  animation: 
    moveHorizontal 8.5s 0.5s 1,
    shrinkHorizontal 2s 9s ease-in 1;
  animation-fill-mode: forwards;
}

.gallery img:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  animation: 
    shrinkHorizontal 2s 11s 1;
  animation-fill-mode: forwards;
}

.gallery img:nth-child(3) {
  grid-row: 2;
  grid-column: 1 / 3;
  align-self: end;
  object-position: 0 0;
  animation:
    moveVertical 5s 1s 1,
    shrinkVertical 3s 5s 1;
  animation-fill-mode: forwards;
}

.gallery img:nth-child(4) {
  grid-column: 1 / 3;
  grid-row: 1;
  width: 0;
  justify-self: center;
  align-self: start;
  animation: 
    growHorizontal 2.25s 11s 1,
    moveHorizontal 4s 14s 1,
    shrinkVertical 2s 18s 1;
  animation-fill-mode: forwards;
}

.gallery img:nth-child(5) {
  grid-column: 1;
  grid-row: 2;
  width: 0;
  justify-self: start;
  align-self: end;
  animation: 
    growHorizontal 2.5s 7.5s 1,
    moveVertical 4s 12.5s 1,
    shrinkHorizontal 2s 17s 1;;
  animation-fill-mode: forwards;
}

.gallery img:nth-child(6) {
  grid-column: 2;
  grid-row: 2;
  width: 0;
  justify-self: end;
  align-self: end;
  animation: 
    growHorizontal 2s 8s 1,
    shrinkHorizontal 2s 17s 1;
  animation-fill-mode: forwards;
}

.gallery img:nth-child(7) {
  grid-column: 1/3;
  grid-row: 1/3;
  width: 0;
  justify-self: end;
  align-self: end;
  object-position: 0 0;
  animation: 
    growHorizontal 2s 20s 1,
    moveHorizontal 16s 21.5s 1;
  animation-fill-mode: forwards;
}

@media screen and (max-width: 700px) {
  h1 {
    font-size: 4rem;
  }

}

@font-face{
font-family: "proxima-nova", sans-serif;
font-weight: 400;
font-style: normal;
}
@font-face{ 
font-family: "proxima-nova", sans-serif;
font-weight: 800;
font-style: normal;
}