@import url('https://fonts.googleapis.com/css2?family=Gloock&family=Manrope:wght@200..800&display=swap');

* {
	transition: all 0.4s ease-in-out;
	box-sizing: border-box;
}

@keyframes red-underline {
	0% {border-bottom: solid 1px #df3d40}
	5% {border-bottom: dotted 1px #df3d40}
	10% {border-bottom: solid 1px #df3d40}
	15% {border-bottom: dotted 1px #df3d40}
	20% {border-bottom: solid 1px #df3d40}
	25% {border-bottom: solid 1px #df3d40}
	30% {border-bottom: solid 1px #df3d40}
	35% {border-bottom: solid 1px #df3d40; filter: blur(0);}
	40% {border-bottom: dotted 1px #ebebeb; filter: blur(2px);}
	45% {border-bottom: solid 1px #df3d40; filter: blur(0);}
	50% {border-bottom: solid 1px #df3d40}
	55% {border-bottom: dotted 1px #df3d40}
	60% {border-bottom: solid 1px #ebebeb}
	65% {border-bottom: solid 1px #df3d40}
	70% {border-bottom: dotted 1px #df3d40}
	75% {border-bottom: solid 1px #df3d40}
	80% {border-bottom: solid 1px #df3d40}
	85% {border-bottom: solid 1px #df3d40}
	90% {border-bottom: solid 1px #ebebeb}
	95% {border-bottom: solid 1px #df3d40}
	100% {border-bottom: dotted 1px #df3d40}
}

body {
	margin: 0;
	padding: 0;
	background: #040404;
	font-family: Manrope;
	font-weight: 600;
	font-size: 13px;
	color: #ebebeb;
}

a {
	text-decoration: none;
}

span {
	font-weight: 800;
}

.crimson {
	color: #df3d40;
}

.sebastian {
	color: #ebebeb;
}

.p15 {
	padding: 15px 0;
}

header {
	margin-top: 30px;
	padding: 3px;
	width: 100%;
	height: 30px;
	display: flex;
	align-content: center;
	justify-content: center;
}

.menu__box {
	width: 100%;
	max-width: 1500px;
	height: 25px;
	display: flex;
	align-content: center;
	justify-content: space-between;
	position: fixed;
	padding: 10px;
}

.name__icon {
	font-weight: 700;
	display: flex;
	flex-direction: row;
	align-content: center;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.name__icon p {
	font-size: 40px;
	margin-top: -20px;
}

.name__js {
	max-height: 30px;
	line-height: 0.9;
	margin-left: 3px;
}

.app {
	margin: 15px;
	max-width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	flex-direction: column;
}

.section__home {
	max-width: 1500px;
	width: 100%;
	align-content: center;
	min-height: 75vh;
}

.contact__p {
	font-size: 3vh;
	padding: 0;
	margin: 0;
}

.email-link {
	margin: 2vw 0;
}

.email-link a:hover {
	animation: red-underline 1.3s infinite;
}