html {
    box-sizing: border-box;
    height: 100%;
    box-sizing: inherit;
}

body {
	/* background: #acb6e5;  */
	 /* fallback for old browsers */
	/* background: -webkit-linear-gradient(to right, #86fde8, #acb6e5);  */
	 /* Chrome 10-25, Safari 5.1-6 */
	/* background: linear-gradient(to right, #86fde8, #acb6e5);  */
	/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
	
	background-color: #fbb034;
	background-image: linear-gradient(315deg, #fbb034 0%, #ffdd00 74%);

	/* background-color: #b5c327;
	background-image: linear-gradient(315deg, #b5c327 0%, #ffc907 74%); */
	font-family: Montserrat;
	margin: 0;
}

ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.dev-modal {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
  height: 250px;
}

.dev-profile-container {
	display: flex;
	justify-content: space-between;
	margin: 0 20px;
}

.dev-profile {
	display: flex;
	flex-direction: column;
	text-align: center;
}

.nav-li {
	display: block;
	padding: 15px;
	font-size: 20px;
  font-weight: 500;
  letter-spacing: 2px;
}

.nav-li:hover {
	background-color: rgb(238, 238, 238);
}

.app-container {
	position: relative;
	z-index: 10;
	display: flex;
	flex-direction: row;
	height: 100vh;
}

.modal-overlay {
	position: fixed;
  display: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
	z-index: 100;
}

.modal-open .modal-overlay {
	display: block;
}

.navbar {
	height: 100%;
	margin-bottom: 0;
	background-color: #222;
	/* background-image: linear-gradient(red, yellow); */
  	border-color: #080808;
}

.left-nav {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
  width: 175px;
}

.right-nav {
  width: 350px;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.game-tile {
	width: 21%;
}

.thumbnail{
	height: 90px;
	width: 100%;
	border: 1px solid #ddd;
	border-radius: 4px;
  transition: border .2s ease-in-out;
	margin-bottom: 20px;
}

.score-board {
	text-transform: uppercase;
	color: #9d9d9d;
	letter-spacing: 4px;
	word-spacing: 8px;
	line-height: 50px;
	font-size: 60px;
	font-weight: 700;
}

.container{
	margin: 0 auto;
	padding-top: 80px;
	max-width: 540px;
	width: 100%;
}

.score-display {
	font-size: 100px;
	font-weight: 800;
	color: #bdbdbd;
	letter-spacing: 4px;
}

.title {
	display: block;
	text-transform: uppercase;
	letter-spacing: 2px;
	word-spacing: 6px;
	line-height: 30px;
	font-size: 30px;
	font-weight: 700;
	padding: 15px;
  margin: 0;
}

.sublist {
  display: block;
}

.numbered-list {
  list-style-type: decimal;
}

.alpha-list {
  list-style-type: lower-alpha;
}

.game-grid {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	justify-content: space-evenly;
}

a:link, a:visited, .title {
  color: #9d9d9d;
}

a:link, a:visited {
	text-decoration: none;
}

.button {
  border-radius: 4px;
  background-color: #222;
  color: #bdbdbd;
  text-align: center;
  font-size: 28px;
  padding: 10px;
  width: 200px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
}

.button-text {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button-text:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button:hover .button-text {
  padding-right: 20px;
}

.button:hover .button-text:after {
  opacity: 1;
  right: 0;
}

.pics {
  width: 120px;
	height: 120px;
	border-radius: 50%;
  margin: auto;
}

.sidelove{
	color: white;
	padding-top: 15px;
	font-size: 10px;
	padding-bottom: 8px;
	margin: 0;
	letter-spacing: 2px;
	font-weight: 500;
}

.love{
	padding-top: 15px;
  text-align: center;
}

.love a:link{
	color: black;
}

.love a:visited{
	color: black;
}

/* Modal
====================== */
.modal {
	position: fixed;
  top: 0;
	bottom: 0;
	left: 0;
	right: 0;
  box-shadow: 0 60px 80px 0 rgba(0,0,0,.4);
	z-index: 200;
	display: none;
}
.modal-dialog {
	width: 600px;
	margin: 30px auto;
	box-shadow: 0 5px 15px rgba(0,0,0,.5);
}
.modal-content {
	background: white;
	border-radius: 6px;
}
.close {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: 0 0;
  border: 0;
	float: right;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: .2;
}
.modal-body {
	padding: 15px;
	color: rgb(51, 51, 51);
	font-size: 14px;
	line-height: 20px;
}
.modal-top {
    padding: 30px 30px 30px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(251,251,251,1);
}
.modal-icon {
    display: block;
    max-width: 207px;
    margin: 0 auto 65px;
    max-width: 100%;
}
.modal-header {
    margin-bottom: 10px;
    font-size: 25px;
    letter-spacing: 2px;
    text-align: center;
		padding: 15px;
    border-bottom: 1px solid #e5e5e5;
}
.modal-footer {
	border-top: 1px solid #e5e5e5;
	padding: 15px;
	text-align: right;
}
.modal-title {
	font-size: 30px;
	font-weight: 500;
	color: rgb(51, 51, 51);
	margin: 0;
}
.modal-subheader {
    max-width: 350px;
    margin: 0 auto;
    font-size: 19px;
    line-height: 1.3;
    letter-spacing: 1px;
    text-align: center;
    color: #999;
}
.modal-bottom {
    display: flex;
    flex-wrap: wrap;
    padding: 10px 20px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: #fff;
}
@media (min-width: 456px) {
    .modal-bottom {
        padding: 20px;
    }
}

.btn {
	display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}

.dev:link, .dev:hover {
    text-decoration: none;
}

.right-nav-links {
  padding-bottom: 20px;
}

@media screen and (max-width: 1000px) {
	.app-container {
		display: flex;
		flex-direction: column;
	}

	.navbar {
		width: 100%;
		height: 100px;
	}

	.bottom-content {
	  position: static;
		width: 100%;
		padding-left: 20px;
	}

	.mobile-hidden {
		display: none;
	}

	.thumbnail {
		height: 65px;
	}

	.container{
		padding-top: 20px;
	}

	.score-board {
		font-size: 50px;
		margin: 0;
		margin-top: 15px;
	}

	.score-container {
		margin-bottom: 0;
	}

	.score-display {
		font-size: 80px;
	}

	.modal-dialog {
		width: 100%;
		height: 100vh;
    margin: 0;
		display: flex;
		flex-direction: column;
		background-color: white;
	}

	.modal-top, .modal-bottom {
		border-radius: 0;
	}

	.right-nav {
		height: auto;
	}

	.container {
		flex-grow: 1;
	}

	.right-nav-links {
		display: flex;
		padding-bottom: 10px;
	}

	.nav-li {
		padding: 0 15px;
	}

	.dev-profile-container {
		flex-direction: column;
	}

  .dev-modal {
    height: auto;
  }
}
