body {
  margin: 0;
  padding: 0;
  font-family: 'Gotham', 'Helvetica Neue', sans-serif;
}

.Homepage {
  background-color: #000000;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: calc(10px + 2vmin);
  color: white;
  text-align: center;
  }

.pa-button{
  background:#ffd200;
  color:#000;
  width: 150px;
  border-radius: 7px;
  padding:7px;
  font-weight: 500;
  border:none;
  cursor:pointer;
  font-weight: 500;
  font-size: 18px;
  }

.pa-button:disabled{
  opacity: 0.6;
}

.Homepage strong{
  color: #ceab35;
  font-size: 22px;
  font-weight: 400;
}

a{
  color:black;
  outline: none;
  text-decoration: none;
}

.bottomText{
  position: absolute;
  bottom: 25px;
  padding: 5px 30px;
}

.emailText{
  display: inline-block;
  font-weight: 500;
}

.introSection{
  margin-top: 15px;
}

.paddingLR7P{
  padding: 0 7%;
}

.formSectionCont{
  font-size: 15px;
  max-width: 80%;
  width: 500px;
  margin-top: 20px;
}

.formSection{
  padding: 20px;
  background-color: #f7f7f7;
  margin-bottom: 50px;
}

.w100P{
  width:100%;
}

@media screen and (max-width: 768px) {
  .Homepage strong{
    font-size: 15px;
  }
  .formSectionCont{
    font-size: 13px;
  }
}