body{
  font-family: 'Quattrocento Sans';font-size: 18px;
}
.button-primary {
  background-color: rgb(70,162,214);
  border: none;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  color: white;
  padding: 10px;
  margin-left: 5px;
  margin-right: 5px;
  margin-top: 5px;
  margin-bottom: 5px;
  display: : inline-block;
  font-size: 20px;
  font-family: sans-serif;
}

.red-button {
  background-color: rgb(237, 28, 36);
  border: none;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  color: white;
  padding: 10px;
  margin-left: 5px;
  margin-right: 5px;
  margin-top: 5px;
  margin-bottom: 5px;
  display: : inline-block;
  font-size: 20px;
  font-family: sans-serif;
}

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
  font-family: Quattrocento Sans;
  font-size: 20px;
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  margin-bottom: 5px;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover {
  background-color: #ccc;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 18px;
  background-color: white;
  display: none;
  overflow: hidden;
  
}

.accordion:after {
  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: #777;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}


.topnav {
  overflow: hidden;
  width: 100%;
  background-color: #48a1d5;
  margin-bottom: 10px;
}

.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  font-family: 'Poppins';
}

.topnav a:hover {
  background-color: #f3f4f3;
  color: #242424;
}

