body {
    background-color: #4B9CD3  !important;
    background-image: url('/img/bg100x100.png');
}

.page {
    margin: 5em;
    border: 1px solid #CACACA;
    padding: 2em;
    background-color: #FFFFFF;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.75);
    border-radius: 2em;
    min-height: calc(100vh - 10em);
    position: relative;
}

.page>.page-content {
    display: flex;
    flex-direction: row;
}

.page>.page-content>div {
    flex: 1;
}

.page>.page-content img {
    max-width: 100%;
    height: auto;
}

h1 {
    color: #4B9CD3 !important;
    font-weight: bold;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15);
}
h2 {
    font-size: 1.2em !important;
}
h3 {
    font-size: 1.1em !important;
}

.page>footer {
    margin-top: 2em;
    text-align: center;
    color: #FFFFFF;
    font-size: .75em;
    position: absolute;
    width: 100%;
    bottom: -4em;
    padding-bottom: 1em;
    font-weight: bold;
}

#reach-out button {
  background-image: linear-gradient(#42A1EC, #4B9CD3);
  border: 1px solid #0077CC;
  border-radius: 4px;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  direction: ltr;
  display: block;
  font-family: "SF Pro Text","SF Pro Icons","AOS Icons","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -.022em;
  line-height: 1.47059;
  min-width: 30px;
  overflow: visible;
  padding: 4px 15px;
  text-align: center;
  vertical-align: baseline;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
}

#reach-out button:disabled {
  cursor: default;
  opacity: .3;
}

#reach-out button:hover {
  background-image: linear-gradient(#51A9EE, #147BCD);
  border-color: #1482D0;
  text-decoration: none;
}

#reach-out button:active {
  background-image: linear-gradient(#3D94D9, #0067B9);
  border-color: #006DBC;
  outline: none;
}

#reach-out button:focus {
  box-shadow: rgba(131, 192, 253, 0.5) 0 0 0 3px;
  outline: none;
}

@media (max-width: 600px) {
    .page {
        margin: 2em;
    }
    .page>.page-content {
        display: flex;
        flex-direction: column;
    }
    .page>footer {
        width: auto;
    }
}