html {
	height: 100%;
	width: 100%;
}

body {
	font-family: 'Exo 2', sans-serif;
	background-color: white;
	overflow: hidden;
	height: 100%;
	width: 100%;
	margin: 0;
	transition: background-color 1s ease-out;
}

/* across all pages */
.my_link {
	color: white;
	font-weight: bold;
	text-decoration: none;
}

ul.topnav {
    list-style-type:none;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: black;
}

ul.topnav li {
    float: left;
    text-align: center;
    color: white;
}

ul.topnav li a {
    display: inline-block;
    color: #ffffff;
    text-align: center;
    padding: 1vw 1vh;
    text-decoration: none;
    transition: 0.3s;
    font-size: 1.28vw;
}

ul.topnav li a:hover {background-color: #555;}

ul.topnav li.icon {display:none;}



/*
#fig_1:hover .overlay {
	opacity: 1;
	transform: scale(1.25, 1.25);
}

#fig_2:hover .overlay {
	opacity: 1;
	transform: scale(1.25, 1.25);
}

#fig_3:hover .overlay {
	opacity: 1;
	transform: scale(1.25, 1.25);
}

#fig_4:hover .overlay {
	opacity: 1;
	transform: scale(1.25, 1.25);
}

#fig_5:hover .overlay {
	opacity: 1;
	transform: scale(1.25, 1.25);
}
*/



/* About page */

#about_page {
	background: white;
	width: 100vw;
	height: 100vh;
	display: inline-block;
	transition: background-color 1s ease-out;
}

#column1_1 {
	width: 45vw;
	height: auto;
	margin-left: 5vw;
	margin-top: 5vw;
	font-size: 1.6vw;
	position: absolute;
	vertical-align: top;
	display: inline-block;
}

#column1_1:hover {cursor: pointer;}

#column1_1 img {
	width: auto;
	height: auto;
	max-height: 3.5vh;
	max-width: 3.5vh;
	margin: 0;
	position: absolute;
}

#column1_2 {
	width: 45vw;
	height: auto;
	margin-left: 5vw;
	margin-top: 0vw;
	font-size: 1.6vw;
	position: absolute;
	vertical-align: top;
	display: inline-block;
}

#column2 {
	width: 30vw;
	height: auto;
	margin-left: 55vw;
	margin-top: 5vw;
	font-size: 1vw;
	position: absolute;
	display: inline-block;
}

#column2 img {
	width: 100%;
	height: 100%;
	position: relative;

}

/*Gallery Page*/
/*Image carousel containers and video overlays*/
#carousel_page{
	background: white;
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	display: inline-block;
	transition: background-color 1s ease-out;
}

.carousel_container {
	margin: 0 auto; 
	margin-top: 10vh;
	margin-left: 20vw;
	width: 41.67vw;
	height: 41.67vh;
	position: relative;
	perspective: 4000px;
	display: inline-block;
}

#carousel {
	width: 100%;
	height: 100%;
	position: absolute;
	transform-style: preserve-3d;
	transition: transform 1.0s ease-out;
}

#carousel figure {
	margin: 0;
	display: block;
	position: absolute;
	width: 33.33vw;
	height: 37.33vh;
	left: 1.5vw;
	top: 2.8vh;
	transition: transform 1.0s ease, scale 1.0s ease;
}

.carousel_image {
  	width: 100%;
  	height: 100%;
	position: absolute;

}

.overlay {
    position: absolute; 
    width: 100%;
    height: 100%;
	opacity: 0;
	transition: all 0.5s ease-out;

}

/*Buttons to move through the carousel*/

.button_container {
	position: relative;
	margin-left: 15vw;
	margin-top: 10vh;
	text-align: left;
}

.my_button:hover {transform: scale(1.2, 1.2); cursor: pointer;}

.my_button {
	color: white;
	font-size: 1.44vw;
	margin: 1vw;
	position: relative;
	display: inline-block;
	transition: transform .5s ease-out;
}

/*Side bar with titles of projects / descriptions*/

.sidebar {
	opacity: 0;
	box-shadow: .5vw;
	
	border-width: .025vw;
	border-color: white;
	border-top-style: solid;
	border-bottom-style: solid;

	padding-left: .25vw;
	padding-top: 0;

	margin-left: 15vw;
	
	width: 20vw;
	height: 50vh;
	position: absolute;
	display: inline-block;

	transition: opacity 0.5s linear;
}

#item_title {
	color: white;
	text-align: center;
	font-size: 1.86vw;
	opacity: 1;
	transition: opacity 0.5s linear;
}

#item_description {
	color: white;
	text-align: left;
	font-size: 1.44vw;
	opacity: 1;
	transition: opacity 0.5s linear;
}

