@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}

body {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	background: linear-gradient(135deg, #2f97c1, #0cf574);
}

.titulo {
	position: absolute;
	top: 30px;
	font-size: 45px;
	color: white;
	letter-spacing: 2px;
	font-weight: 600;
	padding: 10px;
	margin-top: 40px;
}

.relogio {
	display: flex;
	align-items: center;
	justify-content: space-around;
	width: 550px;
	height: 200px;
	background: transparent;
	border-radius: 10px;
	box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.5);
}

.relogio div {
	text-align: center;
	height: 170px;
	width: 150px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: white;
	background: rgba(0, 0, 0, 0.9);
	box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.7);
	border-radius: 7px;
	letter-spacing: 3px;
}

.relogio span {
	font-size: 60px;
	font-weight: bolder;
}

.relogio span.tempo {
	font-size: 13px;
	font-weight: 500;
}

.rodape {
	position: fixed;
	left: 50%;
	bottom: 20px;
	transform: translateX(-50%);
	font-size: 18px;
	color: white;
	letter-spacing: 2px;
	font-weight: 600;
	padding: 10px;
}

.nome {
	color: #0015ff;
}
