html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
}

h1, h3, p {
  font-family: 'proxima-nova', Arial, Helvetica, sans-serif;
  text-align: center;
}

.ocms-site-placeholder {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  position: fixed;

  background-image: url('../assets/placeholder-back.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ocms-site-placeholder-center {
  position: absolute;
  top: 37%;
  left: 27.5%;
  width: 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ocms-site-placeholder h1 {
  font-size: 38px;
  letter-spacing: 1px;
  color: rgb(60,60,60);
  margin: 0 0 38px 0;
}

.ocms-site-placeholder h3 {
  color: rgb(100,100,100);
  font-weight: 200;
  font-size: 22px;
  margin: 4px 0;
}

.ocms-site-placeholder p {
  color: rgb(160,160,160);
  font-weight: 100;
}

.ocms-powered {
  padding-top: 36px;
  margin-top: 42px;
  border-top: 1px solid rgb(200,200,200);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ocms-powered img {
  width: 32px;
  height: 32px;
  margin-left: 10px;
  object-fit: contain;
}

@media screen and (max-aspect-ratio: 9/10) {

  .ocms-site-placeholder {
    background-position: 22%;
  }

  .ocms-site-placeholder-center {
    top: 28vh;
  }

  .ocms-site-placeholder h1 {
    font-size: 30px;
  }
  
  .ocms-site-placeholder h3 {
    font-size: 16px;
  }
}