@charset "utf-8";
body {
	background-color: #3b297b;
}
h1 {
	color: white;
	font-family: Lato, sans-serif;
}
p{
	color: white;
	font-family: Lato, sans-serif;
}

div.fixed {
  margin: 0;
	padding: 0;
	position: fixed;
   left: 0;
   bottom: 0;
   width: 100%;
   
   color: white;
   text-align: center;
  }

.sidebar {
  height: 100%;
  width: 20%;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #ffffff;
  overflow-x: hidden;
  padding-top: 20px;
}

.sidebar a {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 16px;
  color: #000000;
  display: block;
font-family: Lato, sans-serif;
}



.main {
  margin-left: 20%;
  font-size: 28px;
  padding: 0px 10px;
}

@media only screen and (max-width:1080px) {
  /* For mobile phones: */
  .sidebar {
    width:100%;
	height: 50%;
	margin-top: 70%;
  }
	
	.sidebar a {
	font-size: 40px;
	}
	
	.sidebar button {
		font-size: 40px;
	}
	
	.sidebar img {
		width: 40%;
	}	
	.main {
	
	width:100%;
	height: 100%;
	margin-left: 0;
	}
}
	
	
.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}

.active, .accordion:hover {
  background-color: #aaa; 
}

.panel {
  padding: 0 18px;
  display: none;
  background-color: #ccc;
  overflow: hidden;
}