/*DESKTOP FORMATTING*/
body {
	cursor: default;
	font-family: helvetica;
	overflow: scroll;
	padding-left: 40px;
	padding-top: 5px;
	-webkit-user-select: none;

		animation-name: fadeIn;/*fade-in on page load*/
	animation-duration: 5s;
	animation-iteration-count: 1;
	animation-delay: none;
}

	@keyframes fadeIn {/*fade-in opacity settings*/
		from {
			opacity: 0;
		}

		to {
			opacity: 1;
		}
	}

.footer {/*Footer for my copyright info*/
	bottom: 0;
	color: rgb(230, 230, 230);
	cursor: default;
	font-size: 12px;
	left: 0;
	padding-bottom: 5px;
  	position: scroll;
  	right: 0; 
}


img {
	pointer-events: none; /*disables dragging and dropping images into desktop*/
	width: 50%;
}

#title {/*Style for my name, upper left-hand corner*/
	color: rgb(38, 38, 38);
	font-size: 23px;
	letter-spacing: 1px;
	padding-bottom: 10px
}

.project-description {/*Project description in a div with this class*/
	width: 75%;
}

#workTitle {/*Style for title of work, next to my name*/
	color: grey;
	font-size: 23px;
	letter-spacing: 1px;
	padding-bottom: 10px;
}

.captions {/*image captions*/
	color: grey;
	cursor: pointer;
	font-size: 12px;
	letter-spacing: 0px;
	line-height: 15px;
}/*END DESKTOP FORMATTING*/


