@font-face {
  font-family: 'Source Code Pro';
  src: url('/static/fonts/Source_Code_Pro/SourceCodePro-Regular.ttf');
}

html {
  background-color: #b9b4ab;
}

main {
  margin-top: 3rem;
}

html * {
  font-family: 'Source Code Pro', monospace;
}

.hidden {
  display: none;
}
.block{
  display: block;
}

.row {
  display: flex;
  flex-direction: row;
}

.column {
  display: flex;
  flex-direction: column;
}

.flexCenter {
  justify-content: center;
  align-items: center;
}

.navbar {
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2rem;
  z-index: 2;
  background-color: #ff857d;
}

.navElement {
  color: #242424;
}

.myButton {
  width: 100px;
  border-radius: 5px;
  cursor: pointer;
  padding: 0.4rem;
  outline: none;
}

.myButton:hover {
  filter: brightness(95%);
  transform: scale(1.02);
  transition: all .2s linear;
}

.myButton:active {
  filter: brightness(105%);
  transform: scale(0.98);
  transition: all .2s linear;
}

.textCenter {
  text-align: center;
}

.textRight {
  text-align: right;
}

.mx1 {
  margin: 0 0.5rem;
}

.my1 {
  margin: 0.5rem 0;
}

.my2 {
  margin: 1rem 0;
}

.w150 {
  width: 150px;
}


/* MODAL */
/* https://www.w3schools.com/howto/howto_css_modals.asp */
.modal {
	display: none;
	/* Hidden by default */
	position: fixed;
	/* Stay in place */
	z-index: 1;
	/* Sit on top */
	left: 0;
	top: 0;
	width: 100%;
	/* Full width */
	height: 100%;
	/* Full height */
	overflow: hidden;
	/* Enable scroll if needed */
	background-color: rgb(0, 0, 0);
	/* Fallback color */
	background-color: rgba(0, 0, 0, 0.4);
	/* Black w/ opacity */
}
.modal_content {
	background-color: #fefefe;
	margin: 3% auto;
	/* 15% from the top and centered */
	padding: 20px;
	border: 1px solid #888;
	width: 80%;
	/* Could be more or less, depending on screen size */
	height: 85%;
	overflow-y: auto;
}
