body {
    background-color: #fffbdb;
}

.accordion {
  background-color: #aaae8e;
  color: #3a606e;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}

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

.panel {
  padding: 0 18px;
  display: none;
  background-color: #fffbdb;
  overflow: hidden;
}

h1 {
    color: #da7422;
    text-align: center;
    font-size: 90px;
    font-family: 'Bebas Neue', sans-serif;
}

h2, p, li {
    color: #3a606e;
    font-family: 'Noto Serif', serif;
}

    
img, iframe {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

img {
  border-radius:60px;
}

* {
  box-sizing: border-box;
}

/* Create two equal columns that floats next to each other */
.column {
  float: left;
  width: 50%;
  padding: 90px;
  height: 300px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}