﻿body {
    background-color : silver;
	text-align : center;
}

#hookParagraph {
	width: 65%;
	margin: auto;
	margin-top: 35px;
	margin-bottom: 35px;
	padding: 10px;
	font-size: 22px;
	font-weight: normal;
	border: 1px dashed black;
	border-radius: 10px;
}

section p, ul {
	text-align : justify;
}

figure {
	display: inline-grid;
	margin : 10px 25px 40px 25px;
	width: 30%;
	font-size : 18px;
}

figure img, video {
	width: 100%;
	margin-bottom: 10px;
}

article {
	width : 75%;
	margin : auto;
	margin-bottom: 35px;
	border : 1px solid black;
	font-family : sans-serif;
}

.collapsible {
	background-color: #eee;
	color: #444;
	cursor: pointer;
	padding: 12px;
	width: 100%;
	border: none;
	outline: none;
	font-size: 20px;
}

#projectCollapsible {
	width: 75%;
	border : 1px solid black;
}

.active, .collapsible:hover {
	background-color: #ccc;
}

.collapsible:after {
	content: '\02795'; /* Unicode character for "plus" sign (+) */
	font-size: 13px;
	color: white;
	float: right;
	margin-left: 5px;
}

.active:after {
	content: "\2796"; /* Unicode character for "minus" sign (-) */
}

.collapsibleContent {
	background-color : #f1f1f1;
	padding: 0px 30px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out;
}

#projects {
	background-color : inherit;
	margin-bottom: 35px;
}

.frame {
	border : 3px double black;
	padding : 15px 15px 0px;
	margin-bottom: 20px;
	background-color : lightgrey;
}

.downloads li {
	border : 1px solid black;
	border-radius : 15px;
	padding : 1px 1px 1px;
	margin : 10px 10px 10px 0px;
	list-style-type : none;
	text-align : center;
	font-size : 18px;
	color : white;
	background-color : #737870;
}

.downloads a {
	text-decoration : none;
}

.downloads a:visited li {
    color : lightgrey;
}

.downloads li:hover {
    background-color : #606769;
}

footer p {
	font-family : sans-serif;
}