h1 {
  font-size: 10rem;
}

h2 {
  font-size: 2rem;
}

.club {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1rem;
}

.club-intro {
  display: block;
}
.club-intro .intro-header {
  background-image: url("../images/club/club.JPG");
  width: 100%;
  height: 70%;
  background-size: cover;
  background-position: center;
}
.club-intro .intro-text {
  padding: 1rem 1rem;
}
.club-intro ul {
  opacity: 0;
  display: none;
}
.club-intro:hover .intro-header {
  height: 50%;
  background-position: top;
}
@media screen and (max-width: 767px) {
  .club-intro:hover .intro-header {
    height: 0;
  }
}
.club-intro:hover ul {
  opacity: 1;
  display: block;
}

.club-reg {
  display: grid;
  grid-template-columns: 1fr;
  padding: 2rem;
}

.card {
  height: 100%;
  width: 80%;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 20px 0 rgba(153, 153, 153, 0.25);
  /*input*/
  /*button*/
  /*info*/
}
.card form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0.5rem;
}
.card .input-label {
  color: #212121;
  transition: 0.25s ease;
}
.card .input-field {
  border: 0;
  background-color: transparent;
  border-bottom: 2px solid #eee;
}
.card .input-field:focus, .card .input-field:valid {
  outline: 0;
  border-bottom-color: orangered;
}
.card .action {
  grid-column: 1/3;
}
.card .button {
  width: 100%;
  height: 50px;
  font-size: 1.5rem;
  background-color: orangered;
  color: #fff;
  border: 0;
}
.card .card-info {
  text-align: center;
  color: #000;
}
.card .card-info a {
  display: block;
  color: orangered;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  /*smaller font size for title*/
  h1 {
    font-size: 4rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  .club {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 2fr;
  }
  .card {
    height: 100%;
    width: 100%;
  }
}

/*# sourceMappingURL=club.css.map */
