/* define color CSS variables */
:root {
	--darkGrey:rgba(166,158,176);
	--lightGrey:rgba(239,239,242);
	--gold:rgba(242,226,205);
	--medGrey:rgba(218,218,227);
	--black:rgba(0,0,0);
}
body {
	margin: 0px;
	background-color: var(--lightGrey);
	font-family: 'Open Sans Condensed', sans-serif;
}
p {
	color: var(--black);
}
a {
	color: var(--black);
	font-family: 'Open Sans Condensed', sans-serif;
}
a:hover {
	color: var(--darkGrey);
}
code {
	color: var(--black);
}
#width-container {
	width: 65%;
	margin: 0 auto;
}
@media only screen and (max-width: 600px) {
	#width-container {
	  width: 95%;
	  margin: 10px;
	}
  .footer > div {
    width: 95%;
  }
 }
#app {
	margin: 0 auto;
}
input {
	margin: 15px;
	width: 50px;
	background-color: var(--lightGrey);
	border: 2px solid var(--darkGrey);
	border-radius: 4px;
}

input:focus {
	border: 3px solid var(--black);
	background-color: var(--medGrey);
}
#submit {
	width: 80px;
	height: 25px;
	color: var(--lightGrey);
	background-color: var(--black);
	font-family: 'Oswald', sans-serif;
	
}
#submit:hover {
	color: var(--black);
	background-color: var(--darkGrey);
	border: 1px solid var(--black);
}
h1 {
	text-align: center;
	font-size: 52px;
	margin-bottom: 0px;
	font-family: 'Roboto', sans-serif;
}
h3 {
	font-size: 26px;
	font-family: 'Oswald', sans-serif;
}

.banner-div {
	background-color:  black;
	background-repeat: no-repeat;
	background-size: cover; 
	color: var(--lightGrey);
	text-align: center;
	padding-top: 5px;
}
.banner-div > h3 {
	font-family: 'Open Sans Condensed', sans-serif;
	font-size: 22px;
}

.container {
	display: grid;
	grid-template-columns: auto, auto;
	grid-template-rows: auto, auto;
	grid-gap: 1rem;
	margin: 0 auto;
	max-width: 650px;
}
.container > div {
	border-radius: 5px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	background-color: var(--gold); 
	border: 1px var(--darkGrey) solid;
	padding: 10px;
	font-size: 18px;
	
	
}
.answer-div {
	grid-row: 2 / 3;
	grid-column: 2 / 3;
	display: flex;
	flex-direction: column;
	justify-content: left;
	
}
.answer-div > h3 {
	margin-bottom: 0px;
}
.form-div {
	grid-row: 1 / 3;
	grid-column: 1 / 2;
	display:flex;
	flex-direction: column;
	justify-content: top;
	text-align:center;
	
	
}
li {
    list-style-type: circle;
}

.variables-div{
	grid-row: 1 / 2;
	grid-column: 2 / 3;
	display: flex;
	flex-direction: column;
	justify-content: left;
	align-content: center;
	
	
}
.form-div > form {
	width:100px;
}
.content-div {
	margin-top: 20px;
	border-top: 2px solid var(--medGrey);
	/* border-bottom: 2px solid var(--medGrey); */
}
blockquote {
	font-style: italic;
	box-shadow: -3px 0 0 0 var(--darkGrey),-6px 0 0 0 var(--gold),-9px 0 0 0 var(--black);
	padding: 10px;
}
.footer {
	text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
	background: linear-gradient(to right, var(--lightGrey), var(--medGrey), var(--darkGrey));
	padding: 10px;
}
.footer > div {
	display: flex;
	justify-content: space-between;
  align-items: center;
  width: 30%;
	
}

#article {
	padding: 0 23%;
}