@font-face {
  font-family: 'Inter Bold';
  src: url(fonts/Inter-Bold.ttf);
}

@font-face {
  font-family: 'Inter Medium';
  src: url(fonts/Inter-Medium.ttf);
}
@font-face {
  font-family: 'Inter Light';
  src: url(fonts/Inter-Light.ttf);
}
@font-face {
  font-family: 'Inter Black';
  src: url(fonts/Inter-Black.ttf);
}
@font-face {
  font-family: 'Inter Heavy';
  src: url(fonts/Inter-Heavy.ttf);
}

html, body, *{
  scroll-behavior: smooth;
  margin: 0px;
  padding: 0px;
  font-family: "Inter Medium", Inter;
}

body{
	background-color: #438341;
	overflow-x: hidden;
}

/* ::selection {
  color: #438341;
  background: #1778D0;
} */

img {  
   user-drag: none;  
   user-select: none;
   -moz-user-select: none;
   -webkit-user-drag: none;
   -webkit-user-select: none;
   -ms-user-select: none;
}
/* NAV */
nav {
	padding: 40px 0px 0px 0px;
	margin: 0 auto;
	text-align: center;
	width: auto;
}
nav ul{
	display: inline-block;
	list-style-type: none;
}
nav li{
	display: inline;
	padding: 0px 20px;
}
nav ul li a{
	text-decoration: none;
	color: #376D99;
	font-family: Inter Medium, Inter;
	font-size: 18px;
}
nav .heavy{
	font-family: Inter Black;
}

nav a:hover {
	text-shadow: #FFFFFF 3px 0 20px;
}

/* TITLE */

#title{
	background-image: url("./images/title_background.png");
	background-repeat: no-repeat;
	background-size: cover;
	height: 900px;
	background-position: center bottom;
}

#title img{
	height: 550px;
	display: block;
	margin: 0 auto;
	padding-top: 50px;
}

#title h2, #title h3{
	position: relative;
	font-family: "Inter Bold";
	text-align: center;
}

.float{
	animation: moving 3s infinite;
}

@keyframes moving {
    from {transform: translateY(0px);}
    60% {transform: translateY(8px);}
    to {transform: translateY(0px);}
}

#title h2{
	margin-top: -140px;
	color: #ffbc00;
	font-size: 28px;
	text-shadow: 2px 2px 0 #09361E;
}

#title h3{
	color: #e75746;
	font-size: 23px;
	text-shadow: 2px 2px 0 #09361E;
}

/* SCHEDULE */

#schedule {
	background-color: #ffe2c2;
	padding-top: 20px;
	padding-bottom: 70px;
}

#schedule .main{
	margin-top: -180px;
}

#schedule div{
	width: 800px;
	margin: 0 auto;
}

#schedule h2{
	font-size: 40px;
	color: #20392d;
	text-align: center;
	font-family: "Inter Bold";
}

#schedule .info{
	display: flex;
	grid-gap: 20px;
	justify-content: center;
	padding: 15px 0px 0px 0px;
}

#schedule .info p{
	width: 200px;
	color: #253f4e;
}

#schedule .info .date{
	border-right: 3px solid #253f4e;
	padding-right: 20px;
}

#events{
	text-align: center;
}

#events .time{
	color: #253f4e;
	font-family: "Inter Bold";
	font-size: 22px;
	padding: 40px 0px 5px 0px;
}

#events .title{
	color: #258a39;
	font-family: Inter Bold;
	font-size: 18px;
}

#events .place{
	margin-top: 5px;
	color: #467035;
	font-family: "Inter Light";
}

#events .desc{
	color: #467035;
	font-family: "Inter Light";
	font-size: 17px;
	padding-top: 5px;
	width: 300px;
	margin: 0 auto;
}

#events .plain{
	color: #467035;
	font-family: "Inter Medium";
}

#events .bold {
	font-family: "Inter Bold";
}

#events .performer {
	color: #467035;
}

#events .box .desc{
	font-size: 17px;
	padding-top: 10px;
	width: 200px;
}


.box{
	font-size: 17px;
	max-width: 250px;
	background-color: #c6e198;
	border-radius: 15px;
	padding: 20px 12px;
	color: #222e42;
}

.box.act {
	max-width: 500px;
}

.box p{
	/* width: 200px; */
	margin: 0 auto;
}

.box.act p{
	max-width: 450px;
	text-align: left;
	padding-bottom: 10px;
}

.flex{
	display: flex;
	grid-gap: 10px;
	max-width: 500px;
	padding: 10px 0px;
}

#schedule .main{
	padding-bottom: 100px;
}

#rainbow_divider{
	margin-top: -100px;
	overflow-x: hidden;
	width: 102%;
	animation: rainbow_divider 4s infinite;
}

@keyframes rainbow_divider {
    from {transform: translateY(-6px) rotate(0deg)}
    60% {transform: translateY(14px) rotate(-0.5deg)}
    to {transform: translateY(-6px) rotate(0deg)}
}

#sea-end{
	margin-top: -50px;
	z-index: 10px;
	width: 102%;
	animation: sea-end 4s infinite;
}

@keyframes sea-end {
    from {transform: translateY(-8px) rotate(-1deg)}
    50% {transform: translateY(-16px) rotate(2deg)}
    to {transform: translateY(-8px) rotate(-1deg)}
}


#shovel_right{
	position:relative;
	top: 700px;
  	left: calc(50% + 150px);
	width: 100px;
}

#flower_left{
	position: relative;
	top: 130px;
  	left: calc(50% - 370px);
	width: 100px;
}


/* WHAT IS SCS */

#celebrate{
	background-color: #97BFFF;
	text-align: center;
	padding-bottom: 190px;
}
#celebrate div{
	width: 520px;
	margin: 0 auto;
}

#celebrate h2{
	font-family: Inter Bold;
	color: #3c7cb0;
	font-size: 50px;
	padding-bottom: 5px;
}

#celebrate p{
	color: #183870;
	font-size: 17px;
}

#prev-scs-day{
	width: 450px;
	padding: 20px 0px;
	animation: prev-scs-day 5s infinite;
}

@keyframes prev-scs-day {
    from {transform: translateY(0px)}
    60% {transform: translateY(8px)}
    to {transform: translateY(0px)}
}

/* STAFF */

#staff {
	background-color: #b0d1b0;
	padding-bottom: 0px;
}

#staff h1 {
	position: relative;
	font-family: "Inter Bold";
	text-align: center;
	font-size: 50px;
	color: #2e4d22;
	padding-top: 70px;
	padding-bottom: 50px;
}

#staff .desc {
	font-family: "Inter Light";
}

#profile-container {
	display: grid;
	grid-template-columns: repeat(5, 100px);
	grid-column-gap: 60px;
	grid-row-gap: 30px;
	text-align: center;
	align-items: top;
	justify-content: center;
	align-content: center;
	justify-items: center;
}

.profile {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 0 auto;
}

.profile img {
	width: 120px;
	transition: 0.15s ease-in-out;
	border-radius: 50%;
}

.profile img:hover {
	transition: 0.15s ease-in-out;
	transform: scale(1.05);
}

.profile p {
	color: #2e4d22;
	font-family: "Inter Bold";
} 

/* GALLERY */

#gallery {
	text-align: center;
	background-color: #edaf85;
}

#stickers {
	padding-top: 30px;
	padding-bottom: 30px;
}

#stickers img {
	width: 100px;
	padding-left: 7px;
	padding-right: 7px;
	transition: 0.2s ease-in-out;
}

#stickers img:hover {
	transition: 0.2s ease-in-out;
	filter: drop-shadow(4px 4px 7px #db9565);
}

#ink {
	filter: drop-shadow(8px 3px 1px #edaf85);
	animation: ink 3s infinite;
}

@keyframes ink {
    from {transform: translateY(0px) rotate(-15deg)}
    60% {transform: translateY(8px) rotate(0deg)}
    to {transform: translateY(0px) rotate(-15deg)}
}

#hat {
	filter: drop-shadow(8px 3px 1px #edaf85);
	animation: hat 2.5s infinite;
}

@keyframes hat {
    from {transform: translateY(0px) rotate(0deg)}
    60% {transform: translateY(8px) rotate(-5deg)}
    to {transform: translateY(0px) rotate(0deg)}
}

#watering {
	filter: drop-shadow(8px 3px 1px #edaf85);
	animation: watering 3.5s infinite;
}

@keyframes watering {
    from {transform: translateY(8px) rotate(-10deg)}
    60% {transform: translateY(16px) rotate(5deg)}
    to {transform: translateY(8px) rotate(-10deg)}
}

#strawberry {
	filter: drop-shadow(8px 3px 1px #edaf85);
	animation: strawberry 2s infinite;
}

@keyframes strawberry {
    from {transform: translateY(0px) rotate(0deg)}
    60% {transform: translateY(8px) rotate(5deg)}
    to {transform: translateY(0px) rotate(0deg)}
}

#fence {
	filter: drop-shadow(8px 3px 1px #edaf85);
	animation: fence 2s infinite;
}

@keyframes fence {
    from {transform: translateY(0px) rotate(0deg)}
    60% {transform: translateY(8px) rotate(5deg)}
    to {transform: translateY(0px) rotate(0deg)}
}

#gallery p {
	text-align: center;
	color: #438341;
	padding: 0px 50px 50px 50px;
}

/* FOOTER */
#footer{
}
footer{
	font-size: 17px;
	margin: 0 auto;
	text-align: center;
	width: 300px;
	z-index: 0;
	color: #467035;
}

#floor{
	width: 100%;    position: relative;
	margin-top: -50px;
	z-index: -1;
	max-height: 100px;
}
/* RESPONSIVENESS */

@media only screen and (min-width: 601px) {
	#secret{
		opacity: 0;
		transition: opacity ease 5s;
	}
	#secret:hover{
		opacity: 1;
		transition: opacity ease 5s;
	}
	#title #mobile {
		display: none;
	}
}
@media only screen and (max-width: 850px) {
	#title #desktop{
		width: 600px;
		height: auto;
	}
  #schedule div{
  	width: 500px;
  }
	.float{
		animation: none;
	}
	#title h2{
		margin-top: -120px;
		font-size: 25px;
	}
	#title{
		height: 750px;
	}
	#profile-container {
		grid-template-columns: repeat(3, 100px);
	}
	#title img{
		margin-top: 0px;
	}
}
@media only screen and (max-width: 600px) {
	#title #desktop{
		display: none;
	}
	.float{
		animation: none;
	}
	#title #mobile{
		display: block;
		width: 450px;
		height: auto;
	}
	#title h2{	
		margin-top: 40px;
		font-size: 20px;
	}
	#title h3{
		font-size: 20px;
	}
	#title{
		height: 750px;
	}
	#shovel_right{
		top: 650px;
	  left: calc(50% + 30px);
	}
  #schedule div{
  	width: 400px;
  }
	#flower_left{
		top: 100px;
	  left: calc(50% - 230px);
	}
	#celebrate div{
		width: 390px;
	}
	#celebrate h2{
		font-size: 40px;
		padding-bottom: 5px;
	}
	#prev-scs-day{
		width: 350px;
	}
	#profile-container {
		grid-template-columns: repeat(2, 100px);
	}
	#stickers img {
		margin-left: -25px;
	}
	#sea-end{
		margin-top: 0px;
	}
}


@media only screen and (max-width: 500px) {
	#shovel_right{
	  left: calc(50% + 0px);
	}
	#title{
		height: 730px;
	}
	#title #mobile{
		width: 400px;
	}
	.flex{
		flex-direction: column;
	}
	#prev-scs-day{
		width: 300px;
	}
	#celebrate div{
		width: 300px;
	}
	#celebrate h2{
		font-size: 35px;
	}
	#profile-container {
		grid-template-columns: repeat(2, 100px);
	}

	#schedule .main{
		padding-bottom: 20px;
	}
	#rainbow_divider{
		animation: none;
		margin-top: 0px;
	}
	#prev-scs-day{
		animation: none;
	}
	#celebrate{
		padding-bottom: 70px;
	}
	#ink, #hat, #watering, #strawberry, #fence{
		animation: none;
	}
	#stickers{
		padding-top: 0px;
	}
	#sea-end{
		animation: none;
	}
	#stickers img {
		width: 80px;
	}
}

@media only screen and (max-width: 400px) {
	#title{
		height: 680px;
	}
	#schedule h2, #celebrate h2{
		font-size: 35px;
	}
	#shovel_right{
		display: none;
	}
  #schedule div{
  	width: 300px;
  }
  #schedule .main{
		margin-top: 0px;
	}
	#flower_left{
		display: none;
	}
	#title #mobile{
		width: 350px;
	}
	#prev-scs-day{
		width: 250px;
	}
	#celebrate div{
		width: 280px;
	}

	#schedule .info p{
		width: auto;
		font-size: 15px;
	}
	#schedule .info{
		width: auto;
		color: #704939;
		display: flex;
		grid-gap: 15px;
		justify-content: center;
		padding: 5px 0px 0px 0px;
	}

	#schedule .info .date{
		border-right: 3px solid #B29D91;
		padding-right: 15px;
	}

	#events .time{
		font-size: 18px;
	}

	#events .title{
		font-size: 16px;
	}

	#events .desc{
		font-size: 15px;
	}

	#profile-container {
		grid-template-columns: repeat(2, 100px);
	}
}

/* unvisited link */
#schedule a:link {
	color: #20392d;
}

/* visited link */
#schedule a:visited {
	color: #9fc486;
}

/* mouse over link */
#schedule a:hover {
	color: #258a39;
}

