@font-face {
	src: url(fonts/digital-7-mono.ttf);
	font-family: digital;
}

@import url("https://fonts.googleapis.com/css2?family=Open+Sans&display=swap");

body {
	text-align: center;
	background-color: #101820;
	color: rgb(59, 59, 255);
	font-family: "Open Sans", sans-serif;
	font-size: 50px;
	min-width: 700px;
}
/*NAV links*/
nav {
	font-family: digital, "Open Sans", sans-serif;
	width: 100% !important;
	height: 10% !important;
	text-align: center !important;
}
.link {
	width: 130px !important;
	display: inline-block !important;
	font-size: 20px !important;
}
#clock {
	display: inline-block !important;
	margin: 20px 40px !important;
	border: solid white !important;
}
#stopwatch {
	margin: 20px 40px !important;
	padding: 15px 25px !important;
}
#timer {
	margin: 20px 40px !important;
}
.button {
	background-color: rgb(59, 59, 255) /*#fee715*/;
	color: #101820;
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 30px;
	margin: 60px 20px;
	cursor: pointer;
	border: none;
	font-family: digital;
	border-radius: 50px;
	outline: currentColor;
}
.button:hover {
	background-color: rgba(59, 59, 255, 0.747);
}
::selection {
	background-color: blue;
	color: black;
}

/*
.time, div{
	font-family: digital, "Open Sans", sans-serif;
}*/
#displayT {
	margin-bottom: 80px;
	font-family: digital, "Open Sans", sans-serif;
	font-size: 100px;
}
.time {
	margin-top: 80px;
}
/*scroll bar*/

/* width */
::-webkit-scrollbar {
	width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
	background-color: #101820;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: rgba(59, 59, 255, 0.753) /*#888*/;
	border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: rgba(59, 59, 255, 0.562) /* #555*/;
}
