body {
    font-family: Gill Sans, sans-serif;
    margin: 0;
    padding: 0;
	background: #d9d9d9;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}


/* .................... */
/* .......HEADER....... */
/* .................... */

header {
    background-color: black;
    text-align: center;
    position: sticky;
    top: 0;
    color: white;
	padding-top: 20px;
	padding: 20px;
	z-index: 2;
}
header .dropdown {
	display: inline-block;
	font-weight: bold;
}
header .dropdown span {
	text-decoration: underline;
	font-size: 30px;
}
header .same-line {
	display: inline;
	font-size: 30px;
	padding-left: 4px;
	font-weight: bold;
}
header .dropdown-content {
	position: fixed;
	display: none;
	background: black;
	padding-bottom: 5px;
	padding-top: 5px;
	padding-left: 10px;
	padding-right: 10px;
	text-align: center;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}
header .dropdown-content a {
	color: white;
	font-size: 16px;
	display: block;
	text-decoration: none;
	padding: 5px 0;
}
.dropdown:hover .dropdown-content {
    display: block;
}
header .dropdown-content a:hover {
	color: #d9d9d9;
}


/* .................... */
/* ........MAIN........ */
/* .................... */

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
	margin-top: 30px;
	position: relative;
}
.project-container {
    width: 95.5%;
    max-width: 800px;
	margin-bottom: 30px;
	position: relative;
}
.project-container img {
    width: 100%;
    pointer-events: none;
}
.project-container .project-information {
    color: white;
    text-decoration: underline;
    font-weight: bold;
	float: right;
	background: black;
	padding: 5px;
    margin-top: -4px;
}
.project-container .project-information:hover {
    color: #d9d9d9;
}
.more-projects {
    display: none;
	width: 100%;
}
.see-more {
    display: block;
    margin: 20px 0;
    padding: 5px 10px;
    font-size: 16px;
    background-color: black;
    color: white;
    border: none;
    cursor: pointer;
	font-weight: bold;
	text-decoration: underline;
}
.see-more:hover {
    color: #d9d9d9;
}
main span {
	font-weight: bold;
	display: block;
	text-align: center;
    margin-bottom: 30px;
    width: 80%;
    max-width: 1200px;
}
@media screen and (min-width: 769px) {
    main span {
        font-size: 18px;
    }
}
@media screen and (max-width: 768px) {
    .project-container .project-information {
        font-size: 8px;
		padding: 2px;
    }
    .see-more {
        font-size: 8px;
		padding: 2px 4px;
		margin: 0;
		margin-bottom: 20px;
    }
}


/* .................... */
/* .......FOOTER....... */
/* .................... */

footer {
    background-color: black;
    text-align: center;
    position: sticky;
    bottom: 0;
    color: white;
    padding: 10px;
}
footer p {
    margin: 0;
}