@import url('https://fonts.googleapis.com/css2?family=Merriweather&display=swap');

.logo-img {
    width: 30%;
}

.fmember {
  text-align: center;
  height: 2.5rem;
  width: 10rem;
  margin: 0 1rem 1rem;
}

.fmember p.name {
  margin: 5px 0 0 !important;
  font-family: 'Merriweather', serif;
  font-weight: bold;
}

.member {
  text-align: center;
  height: 5rem;
  width: 10rem;
  margin: 0 1rem 1rem;
}

.member p.name {
  margin: 5px 0 0 !important;
  font-family: 'Merriweather', serif;
  font-weight: bold;
}

.member p.team {
  margin: 0 !important;
  font-family: 'Merriweather', serif;
}

.fmember a {
  margin-left: 0.5rem;
}

.member a {
  margin-left: 0.5rem;
}

.regbtn-wrapper {
  text-align: center;
  font-size: 150%;
  display: flex;
  justify-content: center;
  padding-bottom: 3%;
}

.pp-list ol li {
  list-style-type: none;
  counter-increment: cnt;
}

.pp-list ol li::before {
  content: "(" counter(cnt) ") ";
}

a.regbtn {
  color: #333;
  font-weight: bold;
  background: transparent;
  padding: 18px 30px;
  margin: 0 0.3em 0.3em 0.3em;
  border: 3px solid #333;
  border-radius: 6px;
  position: relative;
  z-index: 1;
  transition: .3s;
  width: 40%;
}
a.regbtn::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #333;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease .3s;
}
a.regbtn:hover {
  color: #fff !important;
  text-decoration: none !important;
}
a.regbtn:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}

a.regbtn.invalid {
    color: #FFFFFF;
    background-color: #696969;
}

a.regbtn.invalid:hover {
    color: #FFFFFF;
    background-color: #696969;
    text-decoration: none;
}

@media all and (max-width: 850px) {
    .regbtn-wrapper {
        flex-flow: column;
    }

    a.regbtn {
        display: block;
        margin: 0.4em auto;
        width: 80%;
    }

    .logo-img {
        width: 70%;
    }

    .member {
	width: 90%;
    }
}
