html, body {
  margin: 0;
  padding: 0;
  font-family: "Cabin", sans-serif;
  min-height: 100%;
  height: 100%;
}

.grey {
  color: grey;
}

body > .header {
  background: white;
  width: 100%;
  height: 150px;
}

body > .header > div {
  position: relative;
}

.mainTitle {
  font-family: "Arvo", sans-serif;
  font-size: 36px;
  font-weight: 700;
  padding-top: 50px;
  color: grey;
  margin: 0;
  line-height: 1.3;
}

.subTitle {
  font-family: "Cabin", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: grey;
  padding-top: 5px;
  margin: 0;
  line-height: 1.3;
}

.menu {
  font-family: "Arvo", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: grey;
  margin: 0;
  line-height: 1.2;
}

body > .header > div > .logo {
  position: absolute;
  width: 350px;
  top: 0;
  right: -50px;
}

body > .header > div > .logo-mobile {
  width: 350px;
  margin: auto;
  display: block;
}

body > .content {
  padding: 30px 0 50px;
}

.footer {
  margin: 60px;
}

.mobile-header {
  display: none;
}

.mobile-header > h1 {
  line-height: 1.3;
  font-family: "Arvo", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: grey;
  margin: 0;
}

.mobile-header > h3 {
  font-family: "Cabin", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: grey;
  padding-top: 5px;
  margin: 0;
  line-height: 1.3;
}

.red {
  color: darkred;
  font-weight: 600;
}

@media (max-width: 720px) {
  .mainTitle {
    display: none;
  }

  .subTitle {
    display: none;
  }

  .menu {
    display: none;
  }

  body > .header > div > .logo {
    position: relative;
    margin: auto;
    width: 350px;
    padding-left: 5px;
    display: block;
  }

  .mobile-header {
    display: block;
    margin-bottom: 10px;
  }

  body > .content {
    margin: 0px;
    padding: 10px 0;
  }
}

div {
  text-align: left;
}

.align-left {
  float: left;
}

.ui.container.small {
  max-width: 500px !important;
  margin-top: 20px;
}

.ladder {
  overflow-x: scroll !important;
  min-width: 600px;
}

@media (min-width: 720px) {
  .desktop-only {
    display: block !important;
  }

  .mobile-only {
    display: none !important;
  }
}

@media (max-width: 721px) {
  .mobile-only {
    display: block !important;
  }
  .desktop-only {
    display: none !important;
  }
}

.hidden {
  display: none;
}

pre {
  white-space: pre-wrap;       /* Since CSS 2.1 */
  white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
  white-space: -pre-wrap;      /* Opera 4-6 */
  white-space: -o-pre-wrap;    /* Opera 7 */
  word-wrap: break-word;       /* Internet Explorer 5.5+ */
}

.spanneditem {
  font-family: "Arvo", sans-serif;
  font-size: 18px;
  line-height: 18px;
}



@keyframes spinner {
  to {transform: rotate(360deg);}
}

.spinner:before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  border-radius: 50%;
  border: 2px solid #ccc;
  border-top-color: #000;
  animation: spinner .6s linear infinite;
}
