import url('https://fonts.googleapis.com/css2?family=B612+Mono&display=swap');

body {
	background: black;
	background-repeat: no-repeat;
	background-size: cover;
}

#clock {
	position: absolute;
	top: 25%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	color: #FFF;
	text-shadow: 1px 1px 5px #000;
	font-family: 'B612 Mono', monospace;
	font-size: 120px;
	letter-spacing: 7px;
}

#date {
	position: absolute;
	bottom: 5%;
	right: 5%;
	color: #FFF;
	text-shadow: 1px 1px 5px #000;
	font-family: 'B612 Mono', monospace;
	font-size: 35px;
}

#links {
	position: absolute;
	bottom: 5%;
	left: 5%;
}

.linklist {
	list-style: none;
}

.linklist li a {
	color: #FFF;
	text-shadow: 1px 1px 5px #000;
	font-family: 'B612 Mono', monospace;
	font-size: 20px;
	text-decoration: none;
	line-height: 1.5;
}

.linklist li a:hover {
	text-decoration: underline;
}

.yt {
	list-style-image: url('icons/youtube.png');
	height: 32px;
}

.tw {
	list-style-image: ulr('icons/twitch.png');
	height: 32px;
}

.logo {
	position: relative;
	width: 32px;
	height: 32px;
	top: 9px;
	left: -10px;
}

@media screen and (max-width: 1280px) {
	body {
		background-image: url('https://source.unsplash.com/1280x1024/?nature,landscape,wallpaper');
	}
}

@media screen and (max-width: 1920px) {
	body {
		background-image: url('https://source.unsplash.com/1920x1080/?nature,landscape,wallpaper');
	}
}

@media screen and (max-width: 2560px) {
	body {
		background-image: url('https://source.unsplash.com/2560x1440/?nature,landscape,wallpaper');
	}
}

@media screen and (max-width: 3840px) {
	body {
		background-image: url('https://source.unsplash.com/3840x2160/?nature,landscape,wallpaper');
	}
}

