  html {
	height: 100%;
	position: relative;
	height: 100vh;
	overflow: hidden;
  }

  .background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('../images/background.jpg');
	background-size: cover;
	background-position: center;
	filter: blur(10px);
	z-index: 1;
  }

  body {
	display: flex;
	height: fit-content;
	width: 100%;
	justify-content: center;
	margin-top: 20vh;
  }