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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100vw;
    height: 100vh;
    background: rgb(211, 187, 109);
    font-family: 'Bungee', cursive;
    font-size: 300px;
    color:rgb(33, 34, 33);
}

.nav-bar > ul{
	font-family: 'Quicksand', sans-serif;
	font-size: 18px;
	font-weight: 500;
	color:rgb(33, 34, 33);
	display: flex;
	justify-content: center;
	flex-direction: row;
	background: rgba(182, 160, 101, 0.616);
}

li {
	align-items: center;
	list-style: none;
	padding: 30px;
}

a {
	text-decoration: none;
	color:rgb(33, 34, 33);

	
}

.eye-container {
	width: 100%;
    height: 70%;
	justify-content: center;
    align-items: center;
	display:flex;
}


.eye {
    width: 300px;
    height: 300px;
    background-color: snow;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: circle(50% at center);
    position: relative;
    margin: 0 1rem;
    overflow: hidden;
}



.pupil {
    width: 50%;
    height: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgb(33, 34, 33);
    border: 15px solid rgb(110, 80, 45);
    border-radius: 50%;

}

.upper-eyelid,
.lower-eyelid {
    width: 100%;
    height: 50%;
    background-color:rgb(182, 160, 101);
    position: absolute;
    animation: blink 6s ease-in-out infinite;
    z-index: 1;
}

.upper-eyelid {
	top: 0;
}

.lower-eyelid {
	bottom: 0;
}



@-webkit-keyframes blink {
	0%, 30% {
		height: 10%;
	}
	32% {
		height: 40%;
	}
	34% {
		height: 20%;
	}
	36% {
		height: 40%;
	}
	38%, 50% {
		height: 20%;
	}
	60%, 70% {
		height: 45%;
	}
	80%, 100% {
		height: 20%;
	}
}

@keyframes blink {
	0%, 30% {
		height: 10%;
	}
	32% {
		height: 40%;
	}
	34% {
		height: 10%;
	}
	36% {
		height: 40%;
	}
	38%, 50% {
		height: 10%;
	}
	60%, 70% {
		height: 30%;
	}
	80%, 100% {
		height: 10%;
	}
}

.btn-container {
	max-width: 100%;
    height: 10%;
	justify-content: center;
	display:flex;
	position: relative;
}

h1 {
	font-family: 'Bungee', cursive;
    font-size: 50px;
    color:rgb(33, 34, 33);
	position: absolute;
}
