body {
	margin: 0;
}

div {
    color: white;
    text-shadow: 2px 4px 2px rgba(0,0,0,0.75);
}

h1 {
    text-align: center;
    align-self: center;
    font-size: 5rem;
    font-weight: 700;
    margin: 20px 0;
}

h2 {
    font-size: 3vmax;
}

h3 {
    font-size: 2vmax;
    font-style: italic;
}

#master {
    padding: 20px;
    width: 100%;
    margin-top: -6px;
	background-color: rgb(6, 26, 38);
}

#master > .row {
    max-width: 100%;
	margin-left: 10px;
	margin-right: 10px;
    padding: 0;
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.project-title {
    height: 100%;
    display: flex;
    position: relative;
    align-self: center;
    padding-right: 0;
    padding-left: 0;
}

.year-div {
    display: flex;
    position: relative;
    text-shadow: 0px 3px 0px rgba(0,0,0,0.9);
    margin-top: 30px;
}

.year-div > .left-line {
    background-color: rgb(29, 168, 223);
    height: 3px;
}

.desc {
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: center;
    padding-left: 0;
}

@media (max-width: 500px) {
    .desc {
        margin-top: 5%;
        margin-bottom: 5%;
    }
}

.desc-header {
    border: 2px solid rgb(145, 145, 145);
    padding: 5px;
	position: relative;
	text-align: center;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    align-self: center;
    flex-grow: 2;
}

.desc-text {
    font-weight: 800;
}

.desc-text, .desc-date {
    font-size: 2rem;
    padding: 5px;
	position: relative;
	text-align: center;
}

.left-line {
    height: 2px;
    background-color: rgb(255, 255, 255);
    align-self: center;
    flex-grow: 1;
}

.right-line {
    height: 2px;
    background-color: rgb(255, 255, 255);
}

.seperator-line {
    height: 2px;
    margin-top: 15px;
    background-color: rgb(255, 255, 255);
}

#sidenav {
	font-size: 20px;
	position: absolute;
	right: 0;
	padding-left: 5px;
	border-style: solid;
	border-color: #0d0d0d;
	border-width: 2px;
}

#sidenav {
	padding-top: 10px;
	background-color: #f0f0f0;
}

.side_button:hover {
	background-color: #a6a6a6;
}

.project_images {
	width: 100%;
	transition: all 0.4s;
	border-style: ridge;
	border-color: #c1c1c1;
}

.img_div {
	display: inline-block;
    position: relative;
    margin-top: 20px;
    float: none;
    
    padding: 0;

    border: 2px solid white;
    transition: filter 0.5s;
}

.img_div.lighten:hover {
    filter: contrast(2);
}

.img_div.darken:hover {
    filter: brightness(0.75);
}

#project_headers {
	text-align: center;
	font-size: 200%;
	color: #ff0000;
}

.announcement-div {
    position: absolute;
    background-color: rgba(240, 192, 34, 0.9);
    text-shadow: none;
    font-weight: 600;
    color:rgb(190, 10, 10);
    font-size: 16px;
    padding: 5px;
    border: solid 2px black;
    border-radius: 10px;
    left: -60px;
    top: 20px;
    transform: rotate(-40deg);
}