@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap'); 


* {
  margin: 0;
  padding: 0;
	box-sizing: border-box;
	overflow: hidden;
}


body {
	min-height: 100vh;
    font-family: 'Roboto', sans-serif;
	margin: 0 auto;
    color: white;
}

h3 {
	background-color: #293462;
	top: 0;
	margin: 0;
	padding: 10px;
	text-align: center;
	user-select: none;
	font-size: 2rem;
}

.sidebar {
	background-color: #293462;
	box-shadow: 0px 0px 10px rgba(30, 30, 30, 0.7);
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	padding: 1rem;
	z-index: 1000;
}

.sidebar ul {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
	list-style-type: none;
	padding: 0;
	margin: 0;
	height: 100%;
}

.sidebar ul li {
	padding: 5px 0;
}

.sidebar input, .sidebar button {
    cursor: pointer;
	text-align: center;
	width: 45px;
}

.sidebar li:last-of-type {
	margin-top: auto;
}

.sidebar button {
	background-color: transparent;
	border: none;
	color: #fff;
	font-size: 15px;
    cursor: pointer;
}

.sidebar label {
	display: block;
	font-size: 12px;
	margin-bottom: 3px;
}

footer {
    background: #293462;
    text-align: center;
    font-size: 0.8rem;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin-bottom: 0;
    padding: .5rem;
    line-height: 3vh;
  }
  
  footer a:visited {
    color: inherit;
  }