

@font-face {
  font-family: 'Geist Light', sans-serif;
  src: url('fonts/Geist-Light.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Geist UltraLight', sans-serif;
  src: url('fonts/Geist-UltraLight.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Geist Bold';
  src: url('fonts/Geist-Bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}

body, html {
  margin: 0;
  padding: 0;
}
 
 body {
	 background-color: #070707;
	 color: white;
	 font-family: 'Geist UltraLight', sans-serif;
	 letter-spacing: -1px;
	 display: flex;
	 flex-direction: column;
	 align-items: center;
 }
 
 body ::selection {
  background: #F6DD07;
  color: black;
}
 
 #contentCont {
	 /* border: 1px solid grey; */
	 width: 95%;
	 max-width: 1500px;
	 height: 95vh;
	 
 }
 
 #navBar {
	 background-color: #171717;
	 width: 100%;
	 height: 7vh;
	 min-height: 75px;
	 border-radius: 10px;
	 display: flex;
	 align-items: center;
	 margin: 25px 0px 0px 0px;
	 justify-content: space-between;
 }
 
 #navLinksCont {
	/* border: 1px solid grey; */
	height: 100%;
	margin: 0px 0px 0px 75px;
	background-color: #171717;
	
	border-radius: 10px;
	
	display: flex;
	align-items: center;
 }
 
 a {
	 text-decoration: none;
 }
 
 .navLink {
	 color: white;
	 text-decoration: none;
	 margin: 0px 55px 0px 0px;
	 font-size: 20px;
 }
 
 .navLink:hover {
	 color: #797C7F;
 }
 
 #logo {
	/* border: 1px solid grey; */
	height: 60px;
	width: 150px;
	background-image: url('polyglot_logo.svg');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
	cursor: pointer;
	margin-left: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	
 }
 
  #headingCont {
	 /* border: 1px solid grey; */
	 display: flex;
	 width: 100%;
	 height: 15vh;
	 min-height: 100px;
	 margin-top: 10px;
	 margin-bottom: 10px;
	 align-items: flex-end;
	 justify-content: space-between;
 }
 
 h1 {
	 font-size: 60px;
	 font-weight: 300;
	 letter-spacing: -2px;
	 margin: 0px 0px 0px 15px;
	 
 }
 
 #timerSection {
	 /* border: 1px solid grey; */
	 display: flex;
	 flex-direction: column;
	 align-items: center;
	 justify-content: space-between;
	 
	 width: 100%;
	 height: 630px;
 }
 
 .timerDiv {
	width: 100%;
	max-width: 500px;
	height: 300px;
	background-color: #171717;
	display: flex;
	flex-direction: column;
	color: white;
	border-radius: 20px;
	justify-content: flex-end;
	text-align: center;
	align-items: center;

}

button {
	margin-top: 10px;
	font-size: 20px;
	background-color: #F6DD07;
	border-radius: 10px;
	padding: 5px;
	cursor: pointer;
	border: none;
	
}

#timerDisplay {
	/* border: 1px solid grey; */
	font-size: 65px;
	margin-bottom: 35px;
	display: flex;
}

#buttonCont {
	/* border: 1px solid grey; */
	width: 90%;
	
	margin: 0px 0px 25px 0px;
	
	display: flex;
	
	align-items: center;
	justify-content: space-between;
}

#resetButton {
	background-color: #797C7F;
	width: 200px;
	height: 50px;
}

#pauseButton {
	background-color: #F6DD07;
	font-size: 30px;
	width: 200px;
	height: 50px;
}


#pauseButton.disabled {
  background-color: #797C7F;
}


#pauseButton, #resetButton {
	display: flex;
	align-items: center;
	justify-content: center;
}

button {
	border-radius: 10px;
	cursor: pointer;
	margin: 0px 0px 0px 0px;
}

.buttonIconCont {
	height: 35px;
	width: 35px;
}

#pauseButtonIcon {
  background-image: url('timer_icons/pause_icon.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

#resetButtonIcon {
  background-image: url('timer_icons/reset_icon.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

input {
	font-size: 65px;
	font-family: Helvetica;
	font-weight: 300;
	outline: none;
	border: 1px solid #171717;
	border-bottom: 2px solid grey;
	background-color: inherit;
	color: white;
	text-align: center;
	width: 50%;
	letter-spacing: -1px;
}

#minLabel {
	font-size: 25px;
	margin: 0;
	margin-top: 5px;
	margin-bottom: 40px;
}

#setButton {
	width: 90%;
	font-size: 30px;
	color: #171717;
	margin: 0px 0px 25px 0px;
	
	font-family: 'Geist UltraLight', sans-serif;
}
 
/*
body {
	font-family: Helvetica;
	font-weight: 300;
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: black;
}

.timerDiv {
	width: 70%;
	max-width: 600px;
	height: 40vh;
	/*background-color: black;
	margin: 10px;
	border: 2px solid black;
	padding: 10px;
	display: flex;
	flex-direction: column;
	color: white;
	background-color: #171717;
	border-radius: 20px;
	justify-content: flex-end;
	text-align: center;
	align-items: center;

}
input {
	font-size: 100px;
	font-family: Helvetica;
	font-weight: 300;
	outline: none;
	border: 1px solid #171717;
	border-bottom: 5px solid grey;
	background-color: inherit;
	color: white;
	text-align: center;
	width: 50%;
}

button {
	margin-top: 10px;
	font-size: 20px;
	background-color: #F6DD07;
	border-radius: 10px;
	padding: 5px;
	cursor: pointer;
	
}

#timerDisplay {
	font-size: 100px;
	text-align: center;
	margin-bottom: 60px;
}

h1 {
	color: white;
	font-weight: 400;
}

#resetButton {
	background-color: #797C7F;
}

.spacer {
	height: 20px;
}

#minLabel {
	font-size: 30px;
	margin: 0;
	margin-top: 5px;
	margin-bottom: 50px;
}

#setButton {
	width: 85%;
	font-size: 30px;
	color: #171717;
}

#buttonCont {
	width: 85%;
}

#pauseButton, #resetButton {
	font-size: 30px;
	width: 49%;
	color: #171717;
}

*/