@font-face{
	font-family: "Determination";
	src: url(../fonts/DTM-Mono.ttf);
}

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.cursor{
	width: 31px;
	height: 31px;
	position: absolute;
	pointer-events: none;
	transform: translate(-50%, -50%);
	z-index: 1;
	animation: hideMouse 0.1s ease infinite;
}

.cursor-move{
	animation: movedMouse infinite;
}

a{
	cursor: none;
}

.preload{
	position: fixed;
	top: 0;
	width: 100%;
	height: 100vh;
	background: #000000;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: opcacity 10sec ease;
}
.section img{
	height: 200px;
}

.preload-finish{
	opacity: 0;
	pointer-events: none;
}

.soulborne{
	animation: soulborne 2s ease infinite alternate;
}

nav{
	background-color:rgba(25,25,25,1);
	display: flex;
	justify-content: space-around;
	align-items: center;
	min-height: 8%;
	border-style: solid;
	border-color: white;
	border-width: 5px;
	padding: 5px;
	padding-top: 10px;
	margin-bottom: 1vh;
}

.logo img{
	height:auto;
	width: 70%;
}

.nav-links{
	display:flex;
	justify-content: space-around;
}

.nav-links li{
	list-style: none;
}

.nav-links img{
	height:auto;
	width: 50%;
}

.burger img{
	height:auto;
	width: 22%;
}

.burger{
	display:none;
	cursor: none;
}

.special{
	background-image: url('../img/ruins.jpg');
}
body {
    font-family: 'Determination', sans-serif;
    color: white;
    font-weight: 400;
	background-repeat: no-repeat;
	background-attachment: fixed;  
	background-size: cover;
	cursor: none;
}

div {
    font-family: 'Determination', sans-serif;
    color: white;
    font-weight: 600;
}

@media screen and (max-width: 768px){
	body{
		overflow-x: hidden;
		cursor: auto;
	}
	a{
		cursor: auto;
	}
	.burger{
		cursor: pointer;
	}
	.nav-links{
		position: absolute;
		right: 0px;
		height: 92%;
		top: 8%;
		background-color: rgba(25,25,25,1);
		display: none;
		flex-direction: column;
		align-items: center;
		width: 50%;
	}
	.burger{
		display: block;
	}
	ul.nav-links{
		border: 5px solid white;
	}
	.cursor{
		display: none;
	}
}
.nav-active{
	display: flex;
}

.title img{
	height:auto;
	width: 20%;
	display: block;
	margin-left: auto;
	margin-right: auto;
}


.content{
	font-family: "Determination";
	margin-left: 10%;
	margin-right: 10%;
	padding: 21px;
	height: 30vh;
	width: 80%;
	background-color: rgba(25,25,25,1);
	display: block;
	float: left;
	font-size: 20px;
	border-style: solid;
	border-color: white;
	border-width: 5px;
	overflow: auto;
	margin-bottom: 10px;
}

.feed{
	display: block;
	height: auto;
	width: 20%;
	margin-left: auto;
	margin-right: auto;
}

.feeds{
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding: 21px;
	height: 33vh;
	width: 100%;
	background-color: rgba(25,25,25,1);
	font-size: 20px;
	border-style: solid;
	border-color: white;
	border-width: 5px;
}

.container img{
	display: block;
	height: auto;
	width: 40%;
	border-radius: 50%;
	margin-left: auto;
	margin-right: auto;
}

.container p{
	font-family: "Determination";
	font-size: 100%;
	text-align: center;
}
.container{
	width: 33%;
	float: left;
	align-items: center;
}

@keyframes hideMouse{
	from{
		visibility: hidden;
	}
	to{
		visibility: hidden;
	}
	
}

@keyframes movedMouse{
	from{
		visibility: visible;
	}
	to{
		visibility: visible;
	}
}

@keyframes soulborne{
	from{
		opacity: 0;
	}
	to{
		opacity: 1;
	}
}