html {
	background: url("images/flower2Small.png") no-repeat center center fixed;
	background: -webkit-image-set(
		url("images/flower2Small.png") 1x,
		url("images/flower2.webp") 2x) no-repeat center center fixed;
	background: image-set(
		url("images/flower2Small.png") 1x,
		url("images/flower2.webp") 2x) no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-color: black;
}

h1 {
	color: #DAD7CD;
	font-size: 50px;
	font-family: 'Space Mono';
	font-display: swap;
	margin-top: 5%;
}

p {
	color: #DAD7CD;
	font-size: 25px;
	font-family: 'Space Mono';
	font-display: swap;
}

#container {
	margin-left: 5%;
	flex:1;
}

.downloadButton {
	position: relative;
	top: 0;
	transition: top ease 0.5s;
}

.downloadButton:hover {
	top: 3px;
}

img {
    margin-right: 10px
}

a {
	color: #DAD7CD;
	text-decoration: none;
	font-family: 'Space Mono';
}

body {
	display: flex;
	flex-direction: column;
	min-height: 95vh;
}

footer {
	/* position: fixed; */
	height: 5vh;
	width: 100%;
	text-align: center;
	
	color: #DAD7CD;
	font-family: 'Space Mono';
	font-display: swap;
}