@charset "UTF-8";
/* CSS Document */
body{
	margin: 0 60px;
    color: #867261;
    font-family: 'Red Hat Display', sans-serif;
    font-weight: lighter;
    font-size: 18px;
    height: 100vh;
    display: flex;
    align-content: center;
	background: white;
	mix-blend-mode: darken;
}

#nextProject:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    border-width: 0 5vw 5vw 0;
    border-style: solid;
    border-color: #fff #fff rgba(255, 255, 255, 0.5) rgba(255, 255, 255, 0.5);
    border-radius: 0 0 0 5px;
    /* background: rgba(0, 0, 0, 1); */
    display: block;
    width: 0;
    -webkit-box-shadow: 0 1px 1px rgb(0 0 0 / 30%), -1px 1px 1px rgb(0 0 0 / 20%);
    -moz-box-shadow: 0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
    box-shadow: 0 1px 1px rgb(0 0 0 / 30%), -1px 1px 1px rgb(0 0 0 / 20%);
}

#nextProject a{
	position: absolute;
    width: 5vw;
    height: 5vw;
    top: 0;
    right: 0;
}

h1{
	font-weight: lighter;
    font-size: 80px;
	margin: 50px 0 0 0;
	text-align: center;
	line-height: 1;
}

h3{
	text-align: center;
	margin-top: 0;
	font-size: 25px;
}

a{
	text-decoration: none;
	color: #867261;
}

p{
	padding-top: 5px;
}

main{
	width: 40%;
	float: left;
	padding-right: 10%;
	display: grid;
	align-content: center;
	mix-blend-mode: color-dodge;
}

aside{
	width: 50%;
	float: left;
	display: grid;
    align-content: center;
}

aside video{
	max-width: 100%;
    height: auto;
}

#background{
	position: fixed;
    width: 0;
    height: 0;
    background: transparent;
    z-index: -1;
    right: 0;
    top: 0;
    border-color: #867261 #867261 transparent transparent;
    border-width: 40vh 30vw;
    border-style: solid;
}

/*Mobile*/
@media screen and (max-width:720px) {
	body{
		display: block;
	}
	
	main{
		width: 100%;
		padding: 25px 0 50px 0;
	}
	
	aside{
		width: 100%;
	}
	
	#nextProject::before{
		border-width: 0 7.5vw 7.5vw 0;
	}
	
	#nextProject a{
		width: 7.5vw;
    	height: 7.5vw;
	}
}