
body {
	margin: 0;
	background: #eeeeee;
	font-family: 'Raleway', sans-serif;
}

/************/
/*question 1*/
/************/

/*Edit and add the necessary code for all of question 1, Navbar Madness, below */
#q1-navbar ul {
    margin: 0;
    padding: 0;
	list-style-type: none;
}

#q1-navbar li {
    float: left;
	height: 33px;
	padding-top: 10px;
}

#q1-navbar li a {
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

#q1-navbar li a:hover {
    background-color: #111;
}

#q1-navbar {
	background: #364156;
	color: white;
}





/************/
/*question 2*/
/************/

/* No selectors given :o */

/* Add the necessary code for all of question 2, flexbox-ception, below */

#q2-container{
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.q2-big-box{
	display: flex;
  	flex-direction: column;
  	justify-content: space-between;
  	align-items: center;
  
}

.q2-tiny-box{
	display: flex;
  	flex-direction: column;
  	justify-content: center;
  	align-items: center;

}


/*************************/
/*OTHER CODE THAT WE USED*/
/*************************/

/*Question 1 stuff*/
#q1-navbar {
	position: fixed;
	width: 100%;
	z-index: 1;
}

.q1-section {
	width: 100%;
	height: 400px;
	opacity: 0.5;
}
.q1-section:nth-child(odd) {
	background-color: #EE6352;
}
.q1-section:nth-child(even) {
	background-color: #F79D84;
}

/*Question 2 stuff*/
#q2-body {
	background-color: #C7EAE4;
}
#q2-container {
	width: 100vw;
	height:100vh;
}

.q2-big-box {
	background-color: #A7E8BD;
	border: 4px solid white;
	border-radius: 4px;
	width: 200px;
	height: 200px;
}

.q2-tiny-box {
	width: 35px;
	border: 2px solid white;
	border-radius: 4px;
	background-color: #FCBCB8;
	font-size: 0.5em;
	padding: 8px 4px;
	margin: 2px;
}


/*index*/


#index {
	display: grid;
	grid-template-columns: 240px;
	grid-template-rows: 200px;
	justify-content: center;
	align-items: content;
	font-weight: 700;
}

#index a {
	text-decoration: none;
}

.question {
    background: #62C370;
    padding: 18px;
    font-size: 16px;
    margin-bottom: 6px;
    border-radius: 2px;
    text-align: center;
    font-weight: 700;
    color: #4a4a4a;
    cursor: pointer;
    box-shadow: 2px 2px 10px -3px black;
    color: white;
}

.question:hover {
	box-shadow: 2px 2px 10px -5px black;
	opacity: 0.8;
}

.title {
	color: #333333;
	background: #eeeeee;
	box-shadow: none;
	display: grid;
	justify-self: center;
	font-size: 36px;
	width: 400px;
	height: 100px;
	margin-top: 24px;
	cursor: auto !important;
}

.title:hover {
	box-shadow: none !important;
	opacity: 1 !important;
}
