*{
	margin: 0;
	padding: 0;
	font-family: Gill Sans,Gill Sans MT,Calibri,sans-serif;
}

button{
	color: white;
	font-size: 20px;
	padding: 5%;
	border: 1px solid white;
	border-radius: 50px;
	background: transparent;
	margin-left: 10%;
	outline: none;
	cursor: pointer;
}

button:hover{
	background-color: white;
	transition-duration: 1s;
	color: black;
}

h1{
	color: white;
	font-family: Papyrus;
}

.main{
	width: 100%;
	height: 100vh;
	background-image: url('img/bg.jpg');
	background-size: cover;
	background-position: center;
	position: relative;
	overflow: hidden;
}

.navbar{
	width: 100%;
	height: 15%;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: rgba(0, 0, 0, 0.5);
}

.navbar img{
	width: 200px;
}

.navitems{
	display: flex;
	flex-direction: row;
}

/*****CONTENT BLOCK*******/

.content{
	color: white;
	font-size: 100px;
	top: 50%;
	left: 8%;
	transform: translateY(-50%);
	z-index: 2;
	position: absolute;
	letter-spacing: 5px;
	text-shadow: 1px 1px 2px black, 0 0 1em white, 0 0 0.2em white;
}

.content a{
	animation: content 2s linear infinite;
}


@keyframes content{
	0%{
		opacity: 0.5;
	}
	50%{
		opacity: 1;
	}
	100%{
		opacity: 0.5;
		text-shadow: 1px 1px 2px black, 0 0 0.1em white, 0 0 0.2em white;
	}
}

@keyframes flicker{
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}


.content a:nth-child(1){

}
.content a:nth-child(2){
	animation-delay: 0.5s;
}
.content a:nth-child(3){
	
}
.content a:nth-child(4){
	animation-delay: 1.5s;
}
.content a:nth-child(5){
	
}
.content a:nth-child(6){
	animation-delay: 2s;
}
.content a:nth-child(7){
	animation-delay: 1s;
}
.content a:nth-child(9){
    animation: flicker 1s linear infinite;
}


/******CHANGING THEMES BUTTON******/

.light{
	margin-right: 5%;
}

.light button:hover{
	transition-duration: 1s;
	background-image: url('img/color.png');
	background: cover;
	background-position: center;
}

/********SNOWFLAKES**********/

.snow img{
	animation: snow 7s linear infinite;
}

.snow{
	width: 100%;
	display: flex;
	align-items: center;	
	justify-content: space-around;
	position: absolute;
	top: -100px;
}


@keyframes snow{
	0%{
		transform: translateY(0);
		opacity: 0;
		-moz-transform:rotate(-150deg);
	    -webkit-transform:rotate(-150deg);
	    -o-transform:rotate(-150deg);
	    -ms-transform:rotate(-150deg);
	}
	50%{
		opacity: 1;
	}
	70%{
		opacity: 1;
	}
	100%{
		transform: translateY(100vh);
		opacity: 0;
	}
}


.snow img:nth-child(1){
	width: 25px;
	animation-delay: 2s;
	transform: rotate3d();
}
.snow img:nth-child(2){
	animation-delay: 1s;
}
.snow img:nth-child(3){
	width: 25px;
	animation-delay: 3.5s;
}
.snow img:nth-child(4){
	animation-delay: 2.5s;
}
.snow img:nth-child(5){
	width: 40px;
	animation-delay: 5s;
}
.snow img:nth-child(6){
	animation-delay: 1.8s;
}
.snow img:nth-child(7){
	width: 30px;
	animation-delay: 7s;
}

/********HIDDEN******/

#hidden {
	position: absolute;
	opacity: 0;
}