html {
  scroll-behavior: smooth;
}
body {
	position: relative;
	font-family: 'Hind', sans-serif;
}
* { border-radius: 0 !important; }
img, iframe { 
	width: 100%; 
}
img { 
	margin-bottom: 22px;
}

.main {
	width: 80vw;
	margin-left: 0;
	background: gray;
}

.main .year .jumbotron img { 
	display: none; 
}

.narrow h2 {
	text-align: center;
}
.logos img{
	padding: 5% 10%;
}
.text-big {
	font-size: 2rem;
}
#y2011 {
	background-color: #78C0AE;
}
#y2012 {
	background-color: #D7B8DE;
}
#y2013 {
	background-color: #C6F8DF;
}
#y2014 {
	background-color: #0786A7;
}
#y2015 {
	background-color: #C2D7D8;
}
#y2016 {
	background-color: #99BCBE;
}
#y2017 {
	background-color: #97911D;
}
#y2018 {
	background-color: #242424;
}
#y2019 {
	background-color: #F5B7C9;
}
#y2020 {
	background-color: #78C0AE;
}


.elevator-button {
	width: 100%;
	text-align: center;
	margin-bottom: 2vh;
	font-size: 300%;
}
.footer {
	text-align: center;
	padding-bottom: 2vh;
	margin-top: 2vh;
	font-weight: bold;
	font-size: 200%;
}

.more {
	position: fixed;
	top: 0;
	right: 0;
	height: 100%;
	width: 20vw;
	background: darkslategrey;
}
.more * { 
	color: white; 
	background: transparent; 
}
.more .jumbotron img {
	float: right;
	width: 50%;
}

.music {
	display: flex;
	align-items: center;
	padding: 0 10px;
	position: absolute;
	bottom: 0;
	left: 0;
	justify-content:space-evenly;
	width: 100%;
}
.music #playing {
	display: none;
	text-align:center;
	font-size: 100%;
}
.music #music-on {
	
	text-align: right;
	font-size: 330%;
}
.music #music-shuffle {
	display: none;
	text-align: right;
	display: none;
	font-size: 330%;
}


@media (orientation: portrait) {
	.main {
		margin-left: initial;
		margin-bottom: 20vh;
		width: auto;
	}
	.more {
		left: 0;
		bottom: 0vh;
		top: auto;
		width: 100%;
		height: auto;
	}
	.more .jumbotron {
		padding-top: 16px;
		font-size: 80%;
	}
	.more .jumbotron img {
		float: right;
		max-height: 17vh;
		max-width: 30vw;
		width: auto;
	}
	.more .music {
		display: flex;
	}
}

@media (max-width: 1400px) and (orientation: landscape) {  
	.main { width: 70vw; }
	.more { width: 30vw; }
}

@media (max-width: 992px) and (orientation: landscape) {
	.more .jumbotron img { width:50%; }
}

@media (max-width: 768px) and (orientation: landscape) {
	.more .jumbotron img { width:50%; }
}

@media (max-width: 1400px) {  
	.more .jumbotron h2 { font-size: 3rem; }
}

@media (max-width: 992px) {
	.more .jumbotron h2 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
	.more .jumbotron h2 { font-size: 2rem; }
}

@media (max-width: 576px) { 
	.more .jumbotron h2 { font-size: 1.5rem; }
}



.funny .navbar {
	background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
}
@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
.funny .jumbotron {
	animation-name: bwFader;
	animation-duration: 4s;
	animation-iteration-count: infinite;
}
@keyframes bwFader {
	0% { color: black; }
	50% { color: white;}
}
.funny .elevator-button {
	display: block;
}

.funny img {
	animation: rotator 10s ease infinite;
}

@keyframes rotator {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}