@charset "utf-8";
/* CSS Document */
html, body {
  margin:0;
		padding: 0px;
	animation: bugfix infinite 1s;
  -webkit-animation: bugfix infinite 1s;
}
	video {
  object-fit: cover;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}

html, body {
  height: 100%;
}
html {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 150%;
  line-height: 1.4;
}
body {
  margin: 0;
}
	#top{
		z-index: 2;
    display: block;
    position: fixed;
    width: 100%;
    margin: 0 auto;
	}
.viewport-header {
  position: relative;
  text-align: center;
  display: block;
  align-items: center;
  justify-content: center;
}

h1 {
    font-family: 'Pacifico', cursive;
    color: #fff;
    text-shadow: 2px 2px 2px darkgreen;
    letter-spacing: 1vw;
    line-height: 1.2;
    font-size: 11vw;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 0px;
    position: relative;
    z-index: 4;
}
	.tag{
width: auto;
border-radius: 8px;
padding: 6px;
/* float: left; */
font-size: 3vw;
display: block;
text-align: center;
text-transform: uppercase;
margin: 0 auto;
background-color: ghostwhite;
border: thin solid;
color: darkgreen;
text-shadow: 0.8px 0.8px 1px darkgreen;
position: relative;
font-weight: bold;
/* text-decoration: underline grey; */
z-index: 3;
max-width: fit-content;
margin-left: auto;
margin-right: auto;
	}
	/* Menu */
	@keyframes bugfix {
  from {
    padding: 0;
  }
  to {
    padding: 0;
  }
}
@-webkit-keyframes bugfix {
  from {
    padding: 0;
  }
  to {
    padding: 0;
  }
}
#overlay-button {
    position: absolute;
    right: 0.4em;
    top: 0em;
    padding: 12px 8px;
    z-index: 5;
    cursor: pointer;
    user-select: none;
}
#overlay-button span {
  height: 2px;
  width: 25px;
  border-radius: 2px;
  background-color: white;
  position: relative;
  display: block;
  transition: all 0.2s ease-in-out;
}
#overlay-button span:before {
  top: -5px;
  visibility: visible;
}
#overlay-button span:after {
  top: 5px;
}
#overlay-button span:before, #overlay-button span:after {
  height: 2px;
  width: 25px;
  border-radius: 2px;
  background-color: white;
  position: absolute;
  content: "";
  transition: all 0.2s ease-in-out;
}
#overlay-button:hover span, #overlay-button:hover span:before, #overlay-button:hover span:after {
  background: #fff;
}

input[type=checkbox] {
  display: none;
}
input[type=checkbox]:checked ~ #overlay {
  visibility: visible;
}
input[type=checkbox]:checked ~ #overlay-button:hover span, input[type=checkbox]:checked ~ #overlay-button span {
  background: transparent;
}
input[type=checkbox]:checked ~ #overlay-button span:before {
  transform: rotate(45deg) translate(7px, 7px);
  opacity: 1;
}
input[type=checkbox]:checked ~ #overlay-button span:after {
  transform: rotate(-45deg) translate(7px, -7px);
}

#overlay {
  height: 100vh;
  width: 100vw;
  background: rgba(1,50,32,.9);
  z-index: 2;
  visibility: hidden;
  position: fixed;
}
#overlay.active {
  visibility: visible;
}
#overlay ul {
  display: block;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  height: 80vh;
  padding-left: 0;
  list-style-type: none;
  margin-top: 10vh;
}
#overlay ul li {
  padding: 1em;
}
#overlay ul li a {
  color: white;
  text-decoration: none;
  font-size: 1em;
  font-family: 'Pacifico', cursive;
}
#overlay ul li a:hover {
  color: #333332;
}
	#main{
		display: block;
    float: left;
    /* height: 80vh; */
    margin-top: 120px;
    height: calc(100vh - 120px);
    width: 100vw;
    position: relative;
	}
	#main p{
	font-weight: 400;
    line-height: 1em;
    padding: 10px;
    border-radius: 15px;
    display: block;
    font-size: .6em;
    /* float: left; */
    margin: 0 auto;
    width: 80%;
    position: relative;
    color: white;
    text-align: revert;
    background-color: rgba(1,50,32,.2);
    text-shadow: 1px 1px 1px black;
	}
	#footie{
		display: block;
    position: absolute;
    width: 100vw;
    bottom: 0px;
		font-size:.6em;
	}
	.lessbtn{
	width: fit-content;
    height: fit-content;
    /* background-color: red; */
    position: relative;
    animation-name: example;
    animation-duration: 4s;
    animation-delay: 2s;
    left: 10px;
    color: white;
    padding: 2px;
    font-family: 'Pacifico', cursive;
    /* text-decoration: underline; */
    transform: rotate(-30deg);
}
.basicbtn{
	width: fit-content;
    height: fit-content;
    /* background-color: red; */
    position: relative;
    animation-name: example;
    animation-duration: 4s;
    animation-delay: 2s;
    left: 40px;
    color: white;
    padding: 2px;
    font-family: 'Pacifico', cursive;
    /* text-decoration: underline; */
    transform: rotate(-30deg);
}
@keyframes example {
  0%   {background-color:red; left:-100px; top:0px; display: none;}
  100% {background-color:red; left:50px; top:0px;}
}
@media screen and (orientation:landscape)
 {
	h1{
	font-size: 4vw;
	}
	.tag{
		font-size: 1.3vw;
	}
}