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

.primary {
	margin-top: 25vh;
	margin-bottom: 0;
	text-align: center;
	line-height: 1.4;
	font-weight: 650;
}

.secondary {
	text-align: center;
	font-weight: 650;
}

.header {
	margin-top: 2.5rem;
	color: white;
	display: inline-block;
	width: 100%;
	padding-left: 2rem;
	padding-right: 2rem;
	font-weight: 550;
}

.header_item {
	display: inline;
}

.links {
	text-align: right;
	position: absolute;
	padding: 0 2.0rem;
}

.divider {
	background-color: white;
    height: 0.5rem;
    width: 50%;
    margin: 1.0rem 25% 2.0rem;
    border-radius: 4px;
}

.container {
	padding: 0 !important;
}

a {
	margin-left: 0.5vw;
	cursor: pointer;
	color: white;
}

a:focus {
	color: white;
}

a:hover {
	transition: 0.3s;
	color: pink;
}

.gradiented {
	background: linear-gradient(to left bottom, #ef27df, #ff8c1b);
	animation: gradient 20s ease infinite;
}

.gradiented_text {
	background: linear-gradient(to left bottom, #ef27df, #ff8c1b);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: gradient 20s ease infinite;
}

@keyframes gradient {
    from {
		filter: hue-rotate(0deg);
	}
	  to {
		filter: hue-rotate(-360deg);
	}
}

body {
	background-image: linear-gradient(to top right, #000000, #3c3c3c);
	background-repeat: no-repeat;
	background-attachment: fixed;
	font-family: 'Manrope', serif;
}

@media (min-width: 60.0rem) { 
	h1 {
		font-size: 5vw;
	}
}