body {
	min-height: 100vh;
	padding: 0px;
	margin: 0px;
	font-family: sans-serif;
	background-color: #433d3d;
	color: #cac7c7;
	z-index: -10;
	position: relative;
}

a {
	color: #617cf4;
	font-weight: bold;
	text-decoration: none;
}
a:hover {
	color: #889cf7;
}

.tabs {
	position: sticky;
  	top: 0;
	z-index: 3;
	margin: 0px;
	padding: 0px;
	list-style: none;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	align-content: center;
	font-size: 36px;
	background-color: #282424;
/*	background-color: #4d859b;*/
	height: 120px;
	width: 100%;
	box-shadow: 0px 2px 8px #282424;
	-webkit-animation: fadeIn 3s, slide 1s;
	animation: slide 1s;

}


.tabs li {
	padding-right: 30px;
	padding-left: 30px;
	border-left: 2px solid #efef1f;
	width: 100%;
}

.tabs a {
	color: #cecaca;
}

.tabs a:hover {
	color: #f9f9f9;
}

#first-tab {
	border-style: none;
	text-align: right;
}

#logo {
	width: 100px;
	border: 2px solid #cac7c7;
}

.tabs #logo {
	margin-top: -29px;
	z-index: 5;
	position: relative;
}

.tabs #logo:hover {
	border: 3px solid #f3f2f2;
	width: 98px;
}

#socials {
	margin: 0px;
	text-align: center;
	position: relative;
	background-color: #363030;
	width: 104px;
	display: flex;
	overflow: hidden;
	padding: 0px;
	margin-top: -10px;
	z-index: 3;
	box-shadow: 2px 2px 5px #282424;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	justify-self: center;
	height: 0px;
	-webkit-transition: height 0.75s ease;
    -moz-transition: height 0.75s ease;
    -o-transition: height 0.75s ease;
    transition: height 0.75s ease;
}

.logo-container:hover #socials {
	height: 450px;
}

#socials li {
	border: none;
	list-style: none;
	font-size: 20px;
	padding: 0px;
	padding-top: 5px;
	padding-bottom: 5px;
	width: 100%;
	text-align: center;
}

#socials li:hover {
	background-color: #282424;
	color: #c2bdbd;
}

#socials img {
	width: 60px;
}

.tabs #logo:hover #socials {
	display: block;
}

.tabs .logo-container {
	height: 42px;
	width:  104px;
	text-align: center;
}


#page-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	z-index: -1;
	position: relative;
}

#footer {
	background-color: #4d859b;
	z-index: -12;
	width: 100%;
	height: 120px;
	position: absolute;
	display: flex;
	flex-direction: row;
	align-items: center;
	color: #f3f2f2;
	position: absolute;
	bottom: -120px;
}

#footer-shadow {
	width: 100%;
	height: 10px;
	box-shadow: 0px 2px 2px #282424;
	z-index: -11;
	position: absolute;
	bottom: 0px;
}

#footer #logo {
	right:  16px;
	bottom:  8px;
	position: absolute;
}

#copyright {
	margin-left: 16px;
}


/*===Animations===*/

@-webkit-keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}
         
@keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}

@-webkit-keyframes slide {
   	0% { 
		margin-top: -120px; 
		height: 0px;
	}
    100% { 
    	margin-top: 0px; 
    	height: 120px;
    }
}

@keyframes slide {
	0% { 
		margin-top: -120px; 
		height: 0px;
	}
    100% { 
    	margin-top: 0px; 
    	height: 120px;
    }
}