
body {
  margin: 0;
  padding: 0;
  font-family: 'Verdana', sans-serif;
  font-size: 100%;
  font-weight: 300;
}

.wrapper {
  max-width: 1000px;
  margin: 50px auto;
  box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.29);
}

.header {
  background: #c6e5de;
  border-bottom: 4px solid rgb(47 163 157);
  text-align: center;
  position: relative;
}

.header h1 {
  color: #2fa39d;
  text-align: center;
  margin: 0;
}

.headingTitle {
  display: none;
}

.header img {
  width: 250px;
  padding: 15px;
  display: block;
  margin: 0 auto;
}

.csc {
  background: #008f89;
  padding: 5px 15px;
  color: white;
  text-decoration: none;
  position: absolute;
  right: 20px;
  transform: translateY(-50%);
  top: 50%;
  border-bottom: 3px solid #2f6563;
  border-radius: 10px;
}

.content {
  background: white;
  text-align: left;
  padding: 10px 25px;
}

.content .info {
  width: 258px;
  margin: 0 15px;
  padding: 10px;
  display: inline-block;
  vertical-align: top;
  text-align: left;
  color: rgb(64, 61, 59);
  background: rgb(255, 255, 255);
  border: 1px dashed rgb(47 163 157);
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}

.content .info p {
  margin: 0;
}

.buttonUl {
  display: flex;
  list-style-type: none;
  margin: 0;
  justify-content: center;
  padding: 0;
}

.donateButton a {
  background: #ff9a4a;
  border: 1px solid #ffcca3;
  padding: 2px 10px;
  border-radius: 10px;
  color: #ffffff;
  text-decoration: none;
  margin: 0 5px;
  font-weight: 700;
  box-shadow: 0 0 5px 0 rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
}

.donateButton a:before {
  content: '';
  background: url(../images/donate.svg);
  height: 32px;
  width: 32px;
  background-repeat: no-repeat;
  display: inline-block;
  background-size: cover;
  margin-right: 5px;
}

.donateButton a:hover {
  background: #ffbb85;
}

.footer {
  background: rgb(47 163 157);
  text-align: center;
  font-size: 75%;
  color: white;
  padding: 8px;
}

.footer a {
  color: #c6e5de;
}

div.contact ul {
  display: inline-block;
  list-style-type: none;
  vertical-align: top;
  margin: 20px 0 0 0;
}

div.contact article ul li {
  background: 0 0;
  padding: 0;
  list-style-type: none;
}

div.contact ul li a {
  color: #2fa39d;
  text-decoration: none;
}

.oaButtonWrapper {
  display: flex;
  justify-content: center;
}

.oaButtonWrapper .oaButton {
  background: #b7e7e5;
  padding: 5px 10px;
  border-radius: 5px;
  color: #008f89;
  display: flex;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  border-bottom: 4px solid #2fa39d;
  margin-bottom: 10px;
}

.oaButtonWrapper .oaButton img.oaLogo {
  width: 28px;
  margin-right: 5px;
}

@media all and (min-width:320px) and (max-width:667px) {
  .wrapper {
    margin: 0;
  }
  .content .info {
    margin: 5px 0;
    border: 0;
    box-shadow: none;
  }
}

@media all and (min-width:320px) and (max-width:767px) and (orientation:portrait) {
  .csc {
    position: relative;
    display: inline-block;
    margin: 0;
    right: auto;
  }
}

@media all and (max-width:767px) and (orientation:landscape) {
  .csc {
    position: relative;
    display: inline-block;
    margin: 0;
    right: auto;
  }
}