@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@300;400;500&display=swap');

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

html, body {
  background-color: #4467BF;
  width: 100%;
  height: 100%;
	margin: 0px;

  overflow-x: hidden;
  font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Ubuntu, roboto, noto, arial, sans-serif;
}

.container {
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	
	width: 100%;
	height: 100%;
}

#timer {
	color: #fff;
	font-family: 'Source Code Pro', monospace;
	font-weight: 400;
	font-size: 32px;
}