* {
  font-family: Nunito;
  margin: 0;
  padding: 0;
}
p {
  margin-bottom: 0 !important;
}
body {
  background-color: #eee;
}
#header {
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  background-color: #404040;
  padding: 20px 100px;
}
.header-left a {
  text-align: center;
}
.header-left img {
  width: 180px;
  height: 35px;
}
.header-right {
  display: flex;
  justify-content: flex-end;
}
.header-right a {
  display: flex;
  align-items: center;
  color: #fff;
  margin-left: 30px;
}
.header-right img {
  width: 25px;
  height: 25px;
}
.header-right p {
  font-size: 14px;
  margin-bottom: 0;
  margin-left: 10px;
}
#content-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 81px);
}
.content h1 {
  color: #2bb673;
  font-size: 64px;
  font-weight: 700;
  line-height: 65px;
  width: fit-content;
  text-align: center;
  margin: 0 auto 25px;
}
.content h1 br {
    display: none;
}
.content a,
.content p {
  color: #1f1d21;
}
.content p {
  font-size: 24px;
  font-weight: 600;
  line-height: 15px;
}
.content img {
    transform: scale(0.8);
    margin: 0 auto;
    display: flex;
}
@media screen and (max-width: 768px) {
  #header {
    padding: 20px;
  }
  .header-left,
  .header-right {
    float: none;
  }
  .header-left img {
    width: 157px;
    height: 30px;
    padding-left: 5px;
  }
  .header-right a {
    margin-left: 10px;
  }
  .header-right p {
    display: none;
  }
  .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .content img {
    width: 195px;
    height: 195px;
    transform: scale(1);
  }
  .content h1 {
    text-align: center;
    font-size: 36px;
    padding-left: 0;
    line-height: unset;
  }
  .content p {
    font-size: 18px;
    padding-left: 30px;
    padding-right: 30px;
    line-height: unset;
  }
  .content h1 br {
    display: block;
  }
}
