@import url('https://fonts.googleapis.com/css?family=Readex+Pro&display=swap');
html {
	cursor: url('../assets/cursor.cur'), auto;
	margin: 0;
	background: #0d1020;
	box-sizing: border-box;
	font-family: Readex Pro;
}
* {
	box-sizing: border-box;
}
a {
	cursor: url('../assets/cursor2.cur'), auto;
}

@keyframes gradientbg {
	0% {
		background-position: 0 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0 50%;
	}
}

.bread {
	width: 100%;
	margin: 0 auto;
}

h1 {
	color: #fff;
	font-size: 50px;
	margin: 0;
	text-shadow: -1.5px -1.5px 0 #000, 1.5px -1.5px 0 #000, -1.5px 1.5px 0 #000, 1.5px 1.5px 0 #000;
}

@keyframes animate {
	0% {
		background-position: 0;
	}
	100% {
		background-position: 400%;
	}
}

.cover {
	transition: all 0.7s ease;
	margin: auto;
	border-radius: 8px;
	margin: 20px 0 0 20px;
}

.cover:hover {
	background: linear-gradient(90deg, #2e40ad, #6969F4, #6969F4, #2e40ad);
	background-size: 400%;
	animation: gradientbg 5s ease infinite;
	transform: translate(0%, -5%);
}
ul.img-list {
	list-style-type: none;
	margin: 0 auto;
	padding: 0;
	text-align: center;
}

section {
	border: 2px solid #000;
	background-color: #1a183f;
}

section,
.serpent {
	margin-bottom: 50px;
	border-radius: 70px;
	position: relative;
	width: 100%;
	max-width: 1048px;
	margin: 0 auto 50px auto;
	padding: 0 37px 37px 37px;
}

.serpent {
	margin: 0;
	padding: 0;
}

.serpent .cover {
      display: block;
      position: relative;
      width: 300px;
      height: 170px;
      margin: 30px auto 0 auto;
      padding: 10px;
      }

.haze {
	padding-top: 30px;
	margin-bottom: 25px;
	font-size: 37px;
	text-shadow: -1.5px -1.5px 0 #000, 1.5px -1.5px 0 #000, -1.5px 1.5px 0 #000, 1.5px 1.5px 0 #000;
	font-weight: bold;
	text-align: center;
	letter-spacing: 3px;
}

header {
	font-size: 3em;
	padding: 20px 0;
	text-align: center;
}

::-webkit-scrollbar {
	display: none
}

footer {
	position: relative;
	width: 100%;
	padding-top: 50px;
	padding-bottom: 50px;
}

img {
	border-radius: 7px;
}

.harbinger {
	display: inline-block;
	position: relative;
	color: #fff;
	background: #1a183f;
	border-radius: 20px;
	text-align: center;
	text-decoration: none;
	width: 40px;
	padding: 9px 0;
	margin: 3px;
	transition: all .5s;
	border: 2px solid #000;
}

.harbinger:hover {
	background: linear-gradient(90deg, #2e40ad, #6969F4, #6969F4, #2e40ad);
	background-size: 400%;
	animation: gradientbg 5s ease infinite;
}

.harbinger span {
	color: #666;
	position: absolute;
	bottom: 0;
	left: -25px;
	right: -25px;
	padding: 5px 7px;
	z-index: -1;
	font-size: 14px;
	background: #fff;
	visibility: hidden;
	opacity: 0;
	transition: all .4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	font-family: Readex Pro;
}

.harbinger span:before {
	content: '';
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid #fff;
	position: absolute;
	bottom: -5px;
	left: 40px;
}

.harbinger:hover span {
	bottom: 50px;
	visibility: visible;
	opacity: 1;
}