@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@700&display=swap');
/* link hover start */
a.white-hover {
	color: white;
	text-decoration: none;
	position: relative
}
a.black-hover {
	color: black;
	text-decoration: none;
	position: relative
}
a.white-hover:after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	border-bottom: 2px solid white;
	transition: .6s
}
a.black-hover:after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	border-bottom: 2px solid #000;
	transition: .6s
}
a:hover:after{
	width: 100%
}
/* link hover end */
* {
	overflow-x: hidden;
}
html, body {
	margin: 0;
	padding: 0;
	background-color: #171a25;
	scroll-behavior: smooth;
}

ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	position: fixed;
	width: 100%;
	z-index: 5;
}
p{
	margin-block-start: 0;
	margin-block-end: 0;
	text-align: center;
}
p a {
	display: block;
	color:rgb(213, 212, 255);
	padding: 10px 0;
	text-decoration: none;
}

h2.headline {
	font-size: 50px;
	text-align: center;
	letter-spacing: 3px;
	font-family: 'Merriweather', serif;
	border-style: none none solid;
}
h3.headline {
	font-size: 32px;
	text-align: center;
	font-weight: normal;

}
.button {
	display: block;
	text-align: center;
	font-size: 20px;
	font-family: 'Open Sans', sans-serif;
	color:#fff;
	border-radius: 14px;
	background: rgba(86, 86, 86, 0.65);
	text-decoration: none;
	border: none;
	width: 180px;
	padding: 20px 0;
	margin: auto;
	height: fit-content;
}
.statusdiv {
	text-align:center;
	font-family: 'JetBrains Mono', monospace;
	padding: 20px 0 0;
}
.statusdiv .statusbutton {
	text-align: center;
	font-size: 20px;
}
#container {
	width: 70%;
	margin: auto;
	align-items: center;
	justify-content: center;
}
.content .cut {
	background-color: rgb(40, 44, 57);
	box-sizing: border-box;
	padding: 0 30px;

}
.cut .headline {
	margin: 15px auto;
}
.button:hover {
	background: rgba(86, 86, 86, 0.85);
	cursor: pointer;
}	 
span {
	display: block;
	color: white;
	text-align: center;
	padding: 8px 14px;
	text-decoration: none;
	font-size: 40px;
	cursor: pointer;
}
ul.active{
	background-color: black;
}
.overlay {
	height: 100%;
	width: 0;
	position: fixed;
	z-index: 10;
	top: 0;
	left: 0;
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0, 0.9);
	overflow-x: hidden;
	transition: 0.5s;
}
  
.overlay-content {
	position: relative;
	top: 25%;
	width: 100%;
	text-align: center;
	margin-top: 30px;
}
  
.overlay a {
	padding: 8px;
	text-decoration: none;
	font-size: 36px;
	color: #818181;
	display: block;
	transition: 0.3s;
}

.overlay a:hover, .overlay a:focus {
	color: #f1f1f1;
}
  
.overlay .closebtn {
	position: absolute;
	top: 20px;
	right: 45px;
	font-size: 60px;
}
.main {
    min-height: 110px;
    background-color: rgb(23,26,37);
    clip-path: polygon(0 0, 100% 100px, 100% 100%, 0% 100%);
    z-index: 1;
    width: 100%;
    position: absolute;


}
.main #content {
    width: 80%;
    min-height: 250px;
    margin: 0 auto;
	font-family: 'Open Sans', sans-serif;
	padding: 125px 0 15px;
    color: white;
}

#background {
    background-repeat: no-repeat;
    background-image: url("/content/img/4k-background.jpg");
    min-height: calc(100vh + 100px);
    background-size: cover;
    background-position: top;
    position: relative;
    z-index: 0;
}
#navbar {
	transition: 0.6s;
}
.button-container {
	width: 80%;
	margin: auto;
	height: 40%;
	background-color: rgba(0, 0, 0, 0.16);
	position: absolute;
	left: 10%;
	top: 30%;
}
#projects, #status {
	padding: 0 0 50px;
	scroll-margin-top: 64px;
}
.disabled {
	display: none;
}
@media (pointer: fine) {
    #background {
        background-attachment: fixed;
    }
}
@media only screen and (max-width: 800px) {
	.main {
		top: 60vh
	}
	#background {
		background-position: center -100px;;
	}
	#container {
		padding: 30% 0;
	}
	.button {
		margin: 15px auto;
	}

	.cut p {
		text-align: center;
	}
	.content .cut {
		margin: 2% auto 0;
	}
}
@media only screen and (min-width: 800px) {
	.main {
		top: 100vh
	}
	#container {
		display:flex;
		height: 100vh;
	}
	#projects .content {
		display: flex;
		flex-wrap: wrap;
	}
	.content .cut {
		width: 49%;
		margin: 0.5% auto;
	}


}
@media only screen and (max-width: 550px) {
	.main #content {
		width: 90%;
	}
}

/*.fade {-webkit-transition: all 0.4s ease; transition: all 0.4s ease;}
