/* Waves Animation start*/

body {
	margin: 0;
	font-family: "Cantarell", serif;
	font-weight: 400;
	font-style: normal;
}

.container {
	display: flex;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	color: white;
	justify-content: center;
	align-items: center;
}

.profile-hero {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.25rem;
	padding: 5px;
}

.profile-hero a {
	color: #fff;
	text-decoration: none;
}

.profile-hero a:hover {
	text-decoration: underline;
}

.profile-links {
	display: flex;
	gap: 0.50rem;
	flex-grow: 3;
}

.error-status {
	display: flex;
	flex-direction: column;
	text-align: center;
}

.background {
    position: relative;
    height: 100vh;
	background: rgb(37,37,37);
	background: linear-gradient(4deg, rgba(37,37,37,1) 0%, rgba(14,14,14,1) 10%, rgba(0,0,0,1) 100%);
}

footer {
	width: 100%;
	position: fixed;
	bottom: 0;
	text-align: center;
	padding: 1rem;
}

.waves {
    position: absolute;
    width: 100%;
    height: 15vh;
    min-height: 100px;
    max-height: 150px;
    bottom: 40%;
    left: 0;
}

.parallax>use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax>use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.parallax>use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.parallax>use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}


/*Shrinking for mobile*/

@media (max-width: 768px) {
    .waves {
        height: 20vw;
        min-height: 40px;
    }

	.profile-hero {
		flex-direction: column;
	}
}

/* Waves Animation end*/

.color-green stop:first-child {
	animation: move-colors-green 0.5s ease-in 0s forwards alternate;
}

.color-green stop:last-child {
	animation: move-colors-green2 0.5s ease-in 0s forwards alternate;
}

.color-blue stop:first-child {
	animation: move-colors-blue 0.5s ease-in 0s forwards alternate;
}

.color-blue stop:last-child {
	animation: move-colors-blue2 0.5s ease-in 0s forwards alternate;
}

.color-yellow stop:first-child {
	animation: move-colors-yellow 0.5s ease-in 0s forwards alternate;
}

.color-yellow stop:last-child {
	animation: move-colors-yellow2 0.5s ease-in 0s forwards alternate;
}

.color-red stop:first-child {
	stop-color: rgba(145,48,41,0.8); 
}

.color-red stop:last-child {
	stop-color: rgba(145,48,41,0.8); 
}

@keyframes move-colors-green {
	0% {
	}

	100% {
		stop-color: rgba(80, 150, 69, 0.8);
	}
}

@keyframes move-colors-green2 {
	0% {
	}

	100% {
		stop-color: rgba(80, 150, 69, 0.5);
	}
}

@keyframes move-colors-blue {
	0% {
	}

	100% {
		stop-color: rgba(41, 79, 145, 0.8);
	}
}

@keyframes move-colors-blue2 {
	0% {
	}

	100% {
		stop-color: rgba(41, 79, 145, 0.5);
	}
}

@keyframes move-colors-yellow {
	0% {
	}

	100% {
		stop-color: rgba(145, 131, 41, 0.8);
	}
}

@keyframes move-colors-yellow2 {
	0% {
	}

	100% {
		stop-color: rgba(145, 131, 41, 0.5);
	}
}
