* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}
body {
  line-height: 1.75;
  font-family: "Source Sans Pro", helvetica;
  font-size: 120%;
  background-color: #7db9e8;
  color: #c3e5f8;
}
a {
  color: inherit;
  text-decoration: none;
}
#bg {
  background: radial-gradient(ellipse at center, #1e5799 0%, rgba(41, 137, 216, 0.95) 60%, rgba(125, 185, 232, 0.9) 100%);
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: -1;
}
#content {
  position: fixed;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 50px;
}
#centeredItem {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px 30px 60px 30px;
}
.flex {
  display: flex;
  flex-direction: row;
}
.col {
  width: 50%;
  padding: 5px 40px 10px 40px;
}
.col:nth-child(1) {
  text-align: right;
}
.col:nth-child(2) {
  border-left: 1px solid #6aaee9;
}
#logo {
  width: 50%;
  margin: 0 auto 40px auto;
  display: block;
}
.logoHolder {
  background-color: #4fa6f4;
  display: inline-block;
  padding: 7px;
  border-radius: 100px;
  margin: 0px auto 40px auto;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25);
  border: 1px solid #4fa6f4;
  border-top: 1px solid #a8def2;
}
.logoHolder .logoHolderInner {
  background-color: white;
  display: block;
  border-radius: 50px;
  overflow: hidden;
  background-image: url(images/logo2.png);
  background-size: cover;
  background-position-x: center;
  background-position-y: center;
  background-repeat: no-repeat;
  height: 100px;
  width: 280px;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
}
.logoHolder .logoHolderInner #logo2 {
  height: 100px;
}
strong {
  font-weight: 600;
  font-size: 140%;
  color: white;
}
h1 {
  color: white;
}
#circleHolder {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.circle {
  border-radius: 500px;
  background-color: #1e5799;
  float: left;
}
#copyright {
  position: fixed;
  bottom: 0;
  right: 0;
  color: #0f6599;
  font-size: 12px;
  padding: 5px 20px;
}
@media (max-width: 600px) {
  #bg {
    min-height: 800px;
  }
  #content {
    position: static;
  }
  #centeredItem {
    width: 100%;
    padding: 10px;
    overflow: auto;
  }
  #centeredItem .logoHolder {
    margin: 20px auto 10px auto;
  }
  #centeredItem .logoHolder .logoHolderInner {
    width: 210px;
    height: 80px;
  }
  #centeredItem .flex {
    display: block;
  }
  #centeredItem .flex .col {
    width: 100%;
    text-align: center;
    border: none;
    padding: 20px 10px;
  }
  #copyright {
    padding-top: 50px;
    position: static;
    color: white;
  }
}
