@charset "utf-8";
/* CSS Document */

@font-face {
	font-family: 'Poppins';
	src: url('fonts/Poppins-Bold.woff2') format('woff2'),
			url('fonts/Poppins-Bold.woff') format('woff'),
			url('fonts/Poppins-Bold.ttf') format('truetype');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

html {
	height: 100%;
}

body {
	background-color: #00171f;
	font-family: Poppins;
	margin: 0;
}

#clock {
	background-image: url(images/kellotaulu.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	height: 65vh;
	list-style: none;
	margin: 30px auto;
	padding-inline-start: 0;
	position: relative;
	width: 100%;
}

#sec, #min, #hour {
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
	left: 49.2%;
  position: absolute;
  top: 0;
	width: 3.2vh;
}

#sec {
	background-image: url(images/sekuntiviisari.svg);
	z-index: 3;
}
   
#min {
	background-image: url(images/minuuttiviisari.svg);
	z-index: 2;
}
   
#hour {
	background-image: url(images/tuntiviisari.svg);
	z-index: 1;
}

#Date {
	font-family: Poppins;
	font-size: 2rem;
	text-align: center;
	text-shadow: 0 0 0px #000000;
	color: #FFFFFF;
	margin: auto;
}

.logo-footer {
	align-items: center;
	background-color: #0073ff;
	bottom: 0;
	color: #fff;
	display: flex;
	left: 0;
	position: absolute;
	right: 0;
}

.logo {
	height: auto;
	margin: 2% 50px;
	width: 150px;
}

.logo-footer-text {
	font-size: 1.5rem;
	letter-spacing: 0.5rem;
}

@media (min-width: 1600px){
	#Date {
		font-size: 3rem;
	}
}

@media (min-width: 1920px){
	.logo {
		width: 250px;
	}
}

@media (min-width: 2200px){
	#Date {
		font-size: 4rem;
	}
}