@font-face {
	src: url(assets/fonts/Oswald-Light.ttf);
	font-family: Oswald Light;
}

html, body {
	height: 100%;
    margin: 0;
    padding: 0;
}

body {
	background-image: url(../assets/blueprint/background.png);
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
	
	color: rgba(235, 235, 235, 1);
	font-family: Oswald Light;
	font-size: 1.2rem;
}

/* ================= HEADER ================= */

header {
    position: relative;
    width: 100%;
    height: 6rem;
    
    line-height: 0;
    
    display: flex;
    flex-direction: row;
    align-items: center;
}

header .logo {
	padding: 0 1vw;
    height: 4rem;
}

@media (max-width: 1000px) {
	header {
		justify-content: center;
	}
}

/* ================= DEFAULT URL DECORATION ================= */

a {
	color: rgba(195, 220, 255, 1);
	transition: all 0.15s ease;
}

a:hover {
	transform: scale(1.05);
	color: rgba(235, 235, 235, 1);
}

/* ================= CONTENT ================= */

#content {
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-wrap: wrap;
    column-gap: 8rem;
	
	height: calc(80svh - 6rem);
	overflow-y: scroll;
	padding-right: 17px;
	box-sizing: content-box;
	
	-webkit-mask-image: linear-gradient(to bottom, black 0%, black 85%, transparent 100%);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-clip: content-box;

    mask-image: linear-gradient(to bottom, black 0%, black 85%, transparent 100%);
    mask-repeat: no-repeat;
    mask-clip: content-box;
}

#content .column {
	display: flex;
	flex-direction: column;
}

#chapter {
	width: 57rem;
}

@media (max-width: 1000px) {
	#chapter {
		width: 88vw;
	}
}

#contact {
	display: flex;
	flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

#contactform {
    padding: 0 2rem;
    margin: 0;
}

#contactlink {
	display: inline-block;
	padding: 0 0.5rem;
}

#contact .icon {
	width: 1.2rem;
	padding: 0 0.5rem;
}

#content::after {
    content: "";
    display: block;
    height: 43svh;
    width: 100%;
}

/* ================= FOOTER ================= */

footer {
	background: linear-gradient(to bottom,
		rgba(0, 0, 0, 0) 0%,
		rgba(255, 255, 255, 0.9) 80%,
		rgba(255, 255, 255, 0.12) 100%
	);
	
  	text-align: center;
	
	position: fixed;
  	bottom: 0;
  	width: 100%;
  	height: 100svh;
  	
  	display: flex;
  	flex-direction: column;
    justify-content: flex-end;
    pointer-events: none;
}

footer * {
    pointer-events: auto;
}

footer .footer {
	width: 100%;
	height: 20svh;
	
	display: flex;
  	flex-direction: column;
    align-items: center;
    justify-content: center;
    
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 100%);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-clip: content-box;

    mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 100%);
    mask-repeat: no-repeat;
    mask-clip: content-box;
}

footer .footer .title {
	font-size: 1.4rem;
	margin: 0.5rem;
}

footer .footer .media {
	font-size: 1.1rem;
	
	display: flex;
	flex-direction: row;
    align-items: center;
    justify-content: center;
	gap: 1.2rem;
}

footer .footer .media .icon {
	width: 1.1rem;
}

footer .footer .media .url {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

footer .footer .copyright {
	font-size: 0.9rem;
}