body{
  background-color:black;
}
.click{
  transform:scale(100%,100%);
}
.click:hover{
  transform:scale(105%,105%);
}
.click:active{
  transform: scale(95%,95%);
}
p{
  margin-right:2rem;
}
h2{
  text-align:center
}
.winky{
  font-family: "Winky Rough", sans-serif;
}
.roboto{
  font-family: "Roboto Mono", monospace;
}
.item{
  display:flex;
  margin-left:2rem;
  margin-right:2rem;
  justify-content:space-between;
}
#main {
  background-color: #800000;
  padding: 2rem;
	color: #9FD13A;
}
#header{
  background-color: #268686;
}
#footer {
  text-align:center;
	background-color: #9FD13A;
  padding: 1rem;
  color: #2F0645;
}
#footer p{
	text-align:right;
}
#footer a{
	text-decoration: none;
  font-size: 1em;
  padding: 1rem;
	background-color: #2F0645;
  color: #9FD13A;
}
#logo {
  display: block;
	margin-left: auto;
  margin-right: auto;
  width:100%;
  max-width:500px;
}
#nav {
  background-color: #9FD13A;
	display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-around;
  font-weight: bold;
  list-style: none;
  margin: 0;
}
#nav li {
  	margin:.1rem;
  	margin-right:2rem;
  font-size: 1em;
	background-color: #2F0645;
}
#nav li a {
  display:block;
  padding:1rem;
	text-decoration: none;
  color: #9FD13A;
}

.img-responsive {
    display:block;
  margin : 0 auto;
	width: 100%;
  max-width: 300px;
  clear:both
}
.col {
  width:100%;
}
.text-center {
	text-align: center;
}
.icon{
  width:100%;
  max-width:100px;
  margin-left:2rem;
}
@media screen and (min-width:576px){
  .img-responsive{
    float:left;
    margin-right: 1.5rem;
  }
  h2{
		text-align:left;
  }
  #nav{
    flex-direction:row;
  }
  #nav li{
    margin:0;
  }
}
#contact{
  margin-left:1.5rem;
  margin-right:1.5rem;
}
#contact label {
	width: 100%;
}
#contact input,
#contact textarea {
	width: 100%;
  margin-top: 0.5em;
  margin-bottom: 1em;
}
#contact input {
	height: 2em;
}
fieldset {
	background-color:#41002C;
  color:#9FD13A;
  padding: 1.5em;
  margin-top: 1em;
}
fieldset input,
fieldset textarea {
	border-color: #0363F0;
}
legend {
	background-color: #07103A;
  color: white;
  padding: 0.5em 1em;
  text-align: center;
}
.btn {
	padding: 0.5em 1em;
  border-color: transparent;
  margin-left:1.5rem;
  margin-right: 1em;
  cursor: pointer;
}
#submit {
	background-color: #07103A;
  color: white;
}