@import url('https://fonts.googleapis.com/css2?family=Noto+Sans');

{
	margin:0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background: #3c92de;
	font-family: "Noto Sans", sans-serif;
	text-align: center;
	margin: 15%;
}

.accordion:after {
  content: '\02795'; 
  font-size: 13px;
  color: #777;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2796";
  
}

.panel {
  padding: 0 18px;
  background-color: #4fb3ff;
  overflow: hidden;
  transition: max-height 0.05s ease-out;
  text-align: left;
    display: flex;
    flex-wrap: wrap;
    max-width: 100%; 
    overflow-wrap: break-word;
    word-break: break-word;
    word-wrap: break-word;
  padding-top: 10px;
}

.inactive {
	display: none;
}

.accordion {
  background-color: #e37d00;
  color: #000000;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-family: "Noto Sans", sans-serif;
  font-size: 15px;
  transition: 0.1s;
  
}


.active, .accordion:hover {
  background-color: #c46c00;
}

.button {
    background-color: #2500a1;
    color: #fff;
    padding: 10px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 2px;
  margin-bottom: 5px;
  margin-right: 5px;
}

.button:hover {
    background-color: #1a0073;
}

#footer {
    background-color: #3366cc;
    color: #fff;
    padding: 40px;
    width: 100%;
}