* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: "Roboto";
	font-weight: 100;
}

body {
	font-size: 18px;
	color: hsla(210deg, 100%, 100%, 1);
	width: 100vw;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

h1 {
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0em;
	font-size: clamp(1em, 3em, 4em);
	animation: breath 2000ms ease-in-out infinite alternate;
	position: relative;
}

h1 .cover {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0.5;
}

@keyframes breath {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

canvas {
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	padding: 0;
	background-color: hsla(240deg, 20%, 20%, 1);
}

#profile img{
	width:120px;
	height:120px;
	border-radius:120px;
}

#footer{
	text-align: center;
	position: fixed;
	bottom: 0px;
	left:0px;	
	line-height: 30px;
	height: 30px;
	width: 100%;
	z-index: 9999;
}
#footer a{
	font-size: 13px;
	font-weight:100;
	color: rgba(160,160,160,0.5);
	text-decoration: none;
}

