html {
    font-size: 16px;
}

body {
    font-family: 'Roboto', sans-serif;
	background-color: #6fc3b5;
	background-image: linear-gradient(135deg, #57978d 0%, #618fad 33%, #9599E2 66%, #11506d 100%);
	background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    display: flex;
    flex-direction: column-reverse;
    margin: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: relative;
}

h1 {
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.64);
    color: white;
    font-size: 2.5rem;
    margin-bottom: 0.3rem;
    margin-left: 2rem;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

#background {
	position: fixed;
	width: 100vw;
	height: 100vh; 
}

#particles-js{ 
	position:absolute; 
	width: 100%; 
	height: 100%; 
	background-repeat: no-repeat; 
	background-size: cover; 
	background-position: 50% 50%; 
}