body {
  background-color: #222E6B;
  background-image: url('../imgs/stripe.png');
  background-repeat: no-repeat;
  background-position: 50% 0%;
  font-family: Roboto;
  font-weight: 400;
  background-size: 150%;
}

.logoHeader {
  max-width: 900px;
  margin: 0 auto;
  margin-top: 50px;
}

.logoHeader > img {max-width: 200px;}

.mainSection {
  min-width: 750px;
  max-width: 900px;
  background: white;
  margin: 0 auto;
  margin-top: 80px;
  border-radius: 5px;
  background-image: url(../imgs/clouds.png);
  background-size: 100%;
  background-repeat: no-repeat;
}

.districtLogo {
  text-align: center;
}

.districtLogo > img {
  max-width: 360px;
  background-color: white;
  position: relative;
  bottom: 35px;
  padding: 10px;
  border-radius: 10px;
      box-shadow: 1px 1px 20px 2px rgba(0, 0, 0, 0.28);

}

.content {
  width: 100%;
  text-align: center;
  padding-top: 28px;
}

.customerTitle {
  font-family: Roboto;
  font-weight: 400;
  letter-spacing: -1px;
  text-transform: uppercase;
  font-size: 26px;
}

.portalsHelpLabel {
  font-family: Roboto;
  font-weight: 400;
  font-size: 18px;
  display: block;
    max-width: 490px;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
}

.customer, .hostedCustomerLabel {
  font-weight: bold;
}

.hostingLogo {
margin-bottom: 10px;
  max-width: 160px;
}

.thinRedDivider {
  border-bottom: 1px solid #B92529;
  width: 50%;
  margin: 0 auto;
  margin-top: 20px;
}

.mainBody {
  padding-bottom: 60px;
}

.portalLinks {
  margin: 0 auto;
  text-align: center;
  position: relative;
  bottom: 50px;
}

.portalLinks > a > div {
  display: inline-block;
  margin-left: 10px;
  margin-right: 10px;
  min-width: 250px;
  min-height: 190px;
  background-color: white;
  border-radius: 15px;
  box-shadow: 1px 1px 20px 2px rgba(0, 0, 0, 0.28);
  padding-top: 35px;
  color: #000;
}

.portalLinks > a > div:hover {
  position: relative;
  bottom: 5px;
}

.portalLinks h3 {
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}

.portalIcon {
  max-width: 70px;
  height: auto;
}

.adminPortal {
  border-bottom: 13px solid #68B9D8;
  background-image: url("../imgs/admin-faint.png");
  background-repeat: no-repeat;
  background-position: 100% 100%;
}

.teacherPortal {
  border-bottom: 13px solid #C68321;
  background-image: url("../imgs/professor-faint.png");
  background-repeat: no-repeat;
}

.studentPortal {
  border-bottom: 13px solid #707DFC;
  background-image: url("../imgs/student-faint.png");
  background-repeat: no-repeat;
  background-position: 150% 0%;
}

@media (max-width: 500px) {
  .mainSection {
    max-width: 100%;
    min-width: 0px;
  }
  .hostingLogo {
    max-width: 100%;
  }
  
  .portalLinks > a > div {
    margin-bottom: 20px;
  }
  .districtLogo > img {
    max-width: 90%;
  }
}

@media (min-width: 1200px) {
  .mainSection {
    max-width: 1200px;
    min-width: 0px;
  }
  .hostingLogo {
    max-width: 100%;
  }
  .logoHeader {
    max-width: 1200px;
  }
  
  .portalLinks > a > div {
    margin-left: 40px;
    margin-right: 40px;
  }
}