@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Slackey&display=swap');

body, p, a, div, span, button, h1, h2, h3, h4, h5, h6 {
	 font-family: "Roboto", serif;
}

body {
margin: 0px;	
	overflow: hidden;
}

	main {
  width: 100%;
  height: 100vh;
}

#summerSpace {
  height: 100%;
  width: calc(50% - 2px);
	max-width: calc(85% - 2px);
	min-width: calc(15% - 2px);
 /* background: url('../img/summer.jpg'); */
	float: left;
	
	background-size: 100vw auto;
  background-repeat: no-repeat;
  background-position: left center;
	
/* background-image: url('../img/summer.jpg'), linear-gradient(to top, #819a30 0%, #85bde0 100%); */
	
	display: flex;
justify-content: space-between;
  align-items: center;
  flex-direction: column;
	
	position: relative;
	overflow: hidden;
	
	border-right: 2px solid #ccc;
	
	transition: all 0.5s ease;
}

#winterSpace {
  height: 100%;
  width: calc(50% - 2px);
	max-width: calc(85% - 2px);
	min-width: calc(15% - 2px);
/*  background: url('../img/winter.jpg'); */
	float: right;
	
	background-size: 100vw auto;
  background-repeat: no-repeat;
  background-position: 100% 50.11%;
	
/*	background-image: url('../img/winter.jpg'), linear-gradient(to top, #424645 0%, #b1acb2 100%); */
	
	display: flex;
 justify-content: space-between;
  align-items: center;
  flex-direction: column;
	
	position: relative;
	overflow: hidden;
	
	border-left: 2px solid #ccc;
	
	transition: all 0.5s ease;
}


.centralSpace {
  background: #fffc;
  padding: 20px;
  border-radius: 20px;
  width: 260px;
  justify-content: space-evenly;
 height: 260px;
  align-items: center;
  display: flex;
  flex-direction: column;
	max-width: calc(100% - 50px) !important;
	max-height: calc(100% - 50px) !important;
	position: relative;
	transition: all 1s ease;
}

#summerSpace .centralSpace {
	left: -100%;
}

#winterSpace .centralSpace {
	right: -100%;
}

.totalVotes {
  text-align: center !important;
	font-size: 25px;
  font-weight: 600;
}

.totalUserVotes {
  width: 100%;
  text-align: center;
}

#totalSummerVotes, #totalWinterVotes, #totalUserSummerVotes, #totalUserWinterVotes {
  display: inline;
}

#voteSummer {
  background: linear-gradient(to bottom right, #ffb700, #f0bb1b);
  font-size: 20px;
  padding: 10px 15px;
  border: none;
  border-radius: 15px;
  box-shadow: 0px 0px 4px #ccc;
	cursor: pointer;
	transition: all 0.5s ease;
}

#voteSummer:hover, #voteWinter:hover {
	transform: scale(1.1);
}

#voteWinter {
  background: linear-gradient(to bottom right, #f2fffc, #d2dbd9);
  font-size: 20px;
  padding: 10px 15px;
  border: none;
  border-radius: 15px;
  box-shadow: 0px 0px 4px #ccc;
cursor: pointer;
		transition: all 0.5s ease;
}

#top10summer {
  position: relative;
  top: 10px;
  text-align: center;
  font-size: 15px;
  cursor: pointer;
  border: none;
  color: #000;
  font-weight: 300;
  background: transparent;
  padding: 10px 15px;
	z-index: 5;
	outline: 1px solid #000;
	max-width: calc(100% - 30px);
	align-self: start;
  left: 10px;
}

#top10summer::after {
  content: "";
  background-color: #f3ba15;
  width: 100%;
  z-index: -1;
  position: absolute;
  height: 100%;
  top: 5px;
  left: 5px;
  transition: 0.2s;
}

#top10summer:hover:after {
  top: 0px;
  left: 0px;
 }

#top10winter {
  position: relative;
  top: 10px;
  text-align: center;
  font-size: 15px;
  cursor: pointer;
  border: none;
  color: #fff;
  font-weight: 300;
  background: transparent;
  padding: 10px 15px;
	z-index: 5;
	outline: 1px solid #fff;
	max-width: calc(100% - 30px);
	align-self: end;
 right: 10px;
}

#top10winter::after {
  content: "";
  background-color: #64b2d9;
  width: 100%;
  z-index: -1;
  position: absolute;
  height: 100%;
  top: 5px;
  right: 5px;
  transition: 0.2s;
}

#top10winter:hover:after {
  top: 0px;
  right: 0px;
 }

#overlayBack {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999999999;
	display: none;
	opacity: 0;
		transition: all 2s ease;
}

#textForSummerTop10, #textForWinterTop10 {
  position: absolute;
  z-index: 999999999999999;
  background: #fffffff7;
  width: calc(86% - 40px);
  height: calc(90vh - 40px);
  top: 5vh;
  left: 7%;
  border-radius: 20px;
  padding: 20px;
	display: none;
	opacity: 0;
		transition: all 2s ease;
	overflow-y: auto;
}

 /* Hide scrollbar for Chrome, Safari and Opera */
#textForSummerTop10::-webkit-scrollbar, #textForWinterTop10::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
#textForSummerTop10, #textForWinterTop10 {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
} 

#closeOveralyTexts {
  position: absolute;
  right: 7%;
  top: 5vh;
  z-index: 99999999999999999999;
  background: #000;
  color: #fff;
  font-size: 25px;
  font-family: "Roboto", sans-serif;
  padding: 5px 10px;
  border-radius: 50%;
  cursor: pointer;
  transform: translate(50%, -50%);
	border: 2px solid #fff;
}

 .scrolling_text {
    width: 100%;
    overflow: hidden;
    display: flex;
    white-space: nowrap;
	 align-items: center;
  height: 100vh;
}

 .scrolling_text .text {
    font-size: 440px;
    font-weight: 600;
   font-family: "Roboto", sans-serif;
    color: #fff;
    animation: animate_text 120s linear infinite; /* The animation property */
	 padding-left: 150px;
}


 .scrolling_text .text span {
    margin: 0 6px;
	 font-family: "Slackey", sans-serif;
}

#scrollingTextBack {
  background: #00000094;
}

@keyframes animate_text {
    from {
      transform: translate3d(0, 0, 0);
    }
    to {
      transform: translate3d(-100%, 0, 0);
    }
}

#summerSpace canvas {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

#winterSpace canvas {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

#copyright {
  z-index: 99;
  position: absolute;
  bottom: 5px;
  font-size: 10px;
  width: calc(100% - 10px);
  text-align: center;
  padding: 5px;
	color: #fff;
  text-shadow: 0px 0px 2px #0000005e;
}

#copyright a {
text-decoration: none;
color: #edf2f3;
}

#summerCanvas {
  background: #f2e289;
}

#winterCanvas {
  background: #010115;
}

#logo {
  margin: 25px 0px 0px 0px;
font-size: 45px;
	/* font-family: "Jaro", sans-serif;
  animation: colorizeLetters 20s linear infinite; */
	font-family: "Slackey", sans-serif;
	
	color: #fff;
	text-shadow: 0px 0px 5px #0009;
	
	transition: all 2s ease;
	animation: beatLogo 4s linear infinite; 
}

@keyframes colorizeLetters {
    0% {
     color: #ffffff;
		text-shadow: 0px 0px 5px #0009;
    }
    25% {
   color: #f3ba15;
  text-shadow: 0px 0px 5px #fff9;
    }
	50% {
     color: #ffffff;
		text-shadow: 0px 0px 5px #0009;
    }
	75% {
     color: #64b2d9;
		  text-shadow: 0px 0px 5px #fff9;
    }
	100% {
     color: #ffffff;
		text-shadow: 0px 0px 5px #0009;
    }
}

@keyframes beatLogo {
	    0% {
	  transform: scale(1);
	}
	50% {
	  transform: scale(1.2);
	}
	 100% {
	  transform: scale(1);
	}
}

#logoContainer {
position: fixed;
  left: calc(50% + -15px);
  transform: translateX(-50%);
  z-index: 9999999999999;
	z-index: 99999999;
  margin-top: 0px;
}

.menu_icon {
  position: fixed;
  bottom: 10px;
  right: 20px;
  color: #fff;
  font-size: 35px;
	cursor: pointer;
  z-index: 999;
	text-decoration: none;
	text-shadow: 0px 0px 3px #000000e5;
}

.topnav {
  position: fixed;
  background: #fff;
  /* goal -> right: 20px; */
	right: -130px;
  bottom: 60px;
  padding: 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: end;
  z-index: 999999;
  font-size: 20px;
	transition: all 0.5s ease;
}

.topnav a {
  color: #010115;
  text-decoration: none;
	padding: 8px 0px;
}

#summerPlusOne, #winterPlusOne {
  position: absolute;
  top: 15px;
  font-size: 20px;
  font-weight: 600;
  transition: all 1s ease;
  opacity: 0;
}

.hr1 {
  width: 100px;
  height: 1px;
  background: #000;
animation: hrOpenClose 4s linear infinite; 
}

@keyframes hrOpenClose {
    0% {
    width: 100px;
    }
	50% {
     width: 280px;
    }
	100% {
    width: 100px;
    }
}

.hr1_1, .hr1_2, .hr1_3, .hr1_4, .hr1_5, .hr1_6, .hr1_7, .hr1_8, .hr1_9 {
  width: 100px;
  height: 1px;
  background: #000;
	margin: 0;
  position: relative;
}

.hr1_1, .hr1_5, .hr1_9 {
  left: 0px;
	animation: hrAn1 10s linear infinite; 
}

@keyframes hrAn1 {
    0% {
   left: 0px;
    }
	50% {
      left: calc(100% - 100px);
    }
	100% {
   left: 0px;
    }
}


.hr1_2, .hr1_6 {
  left: calc(50% - 50px);
	animation: hrAn2 10s linear infinite; 
}

@keyframes hrAn2 {
    0% {
left: calc(50% - 50px);
    }
	25% {
      left: calc(100% - 100px);
    }
	75% {
   left: 0px;
    }
	100% {
	left: calc(50% - 50px);
}
}


.hr1_3, .hr1_7 {
  left: calc(100% - 100px);
	animation: hrAn3 10s linear infinite; 
}

@keyframes hrAn3 {
    0% {
 left: calc(100% - 100px);
    }
	50% {
   left: 0px;
    }
	100% {
 left: calc(100% - 100px);
}
}



.hr1_4, .hr1_8 {
  left: calc(50% - 50px);
	animation: hrAn4 10s linear infinite; 
}

@keyframes hrAn4 {
    0% {
left: calc(50% - 50px);
    }
	25% {
       left: 0px;
    }
	75% {
  left: calc(100% - 100px);
    }
	100% {
	left: calc(50% - 50px);
}
}

/*------------------------------------RESPONSIVE CSS------------------------*/

@media (max-width: 1250px) {
	#logo {
  font-size: 35px;
	}
	
	#top10summer, #top10winter {
  font-size: 12px;
  padding: 10px 12px;
	}
	
	.totalVotes {
  font-size: 20px;
}
	
	.totalUserVotes {
  font-size: 15px;
}
}


@media (max-width: 1000px) {
	#logo {
  font-size: 25px;
	}
	
  #top10summer {
    font-size: 10px;
    padding: 5px 7px;
    max-width: calc(100% - 10px);
    left: 3px;
    top: 2px;
  }
	
	#top10winter {
    font-size: 10px;
    padding: 5px 7px;
    max-width: calc(100% - 10px);
    right: 3px;
    top: 2px;
  }
	
	#voteSummer, #voteWinter {
  font-size: 15px;
  padding: 5px 10px;
	}
	
	.totalVotes {
  font-size: 15px;
}
	
	.totalUserVotes {
  font-size: 10px;
}
	
	.centralSpace {
  padding: 10px;
  height: 215px;
  max-width: calc(100% - 30px) !important;
}
}


@media (max-width: 600px) {
		#logo {
  font-size: 20px;
	}
	
		#voteSummer, #voteWinter {
  font-size: 13px;
  padding: 5px 8px;
	}
}
