/** Ultra Light */
@font-face {
  font-family: "San Francisco";
  font-weight: 100;
  src: url("https://applesocial.s3.amazonaws.com/assets/styles/fonts/sanfrancisco/sanfranciscodisplay-ultralight-webfont.woff");
}
/** Thin */
@font-face {
  font-family: "San Francisco";
  font-weight: 200;
  src: url("https://applesocial.s3.amazonaws.com/assets/styles/fonts/sanfrancisco/sanfranciscodisplay-thin-webfont.woff");
}
/** Regular */
@font-face {
  font-family: "San Francisco";
  font-weight: 400;
  src: url("https://applesocial.s3.amazonaws.com/assets/styles/fonts/sanfrancisco/sanfranciscodisplay-regular-webfont.woff");
}
/** Medium */
@font-face {
  font-family: "San Francisco";
  font-weight: 500;
  src: url("https://applesocial.s3.amazonaws.com/assets/styles/fonts/sanfrancisco/sanfranciscodisplay-medium-webfont.woff");
}
/** Semi Bold */
@font-face {
  font-family: "San Francisco";
  font-weight: 600;
  src: url("https://applesocial.s3.amazonaws.com/assets/styles/fonts/sanfrancisco/sanfranciscodisplay-semibold-webfont.woff");
}
/** Bold */
@font-face {
  font-family: "San Francisco";
  font-weight: 700;
  src: url("https://applesocial.s3.amazonaws.com/assets/styles/fonts/sanfrancisco/sanfranciscodisplay-bold-webfont.woff");
}

html, body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}
body {
  font-family: -apple-system, "San Francisco", "HelveticaNeue-Thin", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.4;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  background: #FFFFF8;
}

#main-content {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}
#sub-content {
  display: inline-block;
  margin: auto;
  padding: 20px 15px;
}
#logo {
  width: 60px;
  height: 60px;
  background: url("../images/logo.png");
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-block;
}

h1 {
  font-size: 20px;
}

p {
  margin: 0 0 15px;
}

a {
  display: inline-block;
  /*color: #ca4700;*/
  color: #FFF;
  background: linear-gradient(to bottom, #ff9d00 0%, #ff7808 100%);
  margin: 20px 0 40px;
  padding: 14px 38px;
  /*border: 4px solid #f06b23;*/
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
}
/*a:hover {
  color: #FFF;
  background: #f06b23;
}
*/
a.simple {
  color: #f06b23;
  /*border: none;*/
  background: none;
  padding: 0;
}
/*a.simple:hover {
  color: #f06b23;
  background: none;
}
*/
ol {
  /*margin: 0;*/
  text-align: left;
}
li {
  padding: 0 0 0 10px;
}

.center {
  width: 100%;
  text-align: center;
}
.bold {
  font-weight: 600;
}
.note {
  margin: 10px 0 0;
  font-style: italic;
  font-size: 80%;
}

.mobile-only {
  display: none;
}