.accordion {
  background-color: #c0d7de;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: center;
  border: none;
  outline: none;
  transition: 0.4s;
  font-size: 120%;
}

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

.panel {
  padding: 0 18px;
  background-color: #c0d7de;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.Footer{
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    color: white;
    text-align: left;
    height: 40px;
    display: flex;
    align-items: center;
    font-size: medium;
}

.Body{
  overflow: hidden;
}