a,
abbr,
address,
article,
aside,
audio,
b,
blockquote,
body,
canvas,
caption,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
p,
pre,
q,
samp,
section,
small,
span,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary {
  display: block;
}

mark {
  background-color: transparent;
}

ul,
ol {
  list-style: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

caption,
th {
  text-align: left;
}

q:after,
q:before {
  content: "";
}

p {
  box-sizing: border-box;
  margin-bottom: 1em;
  padding-left: 20px;
  padding-right: 20px;
}

@media only screen and (max-width: 750px) {
  p br {
    display: none;
  }
}

section h2,
#status-bar h3,
header {
  font-family: -apple-system, BlinkMacSystemFont, "Avenir", "Avenir-Light",
    "Avenir Next", "HelveticaNeue-Light", "Helvetica Neue", Helvetica, Sans,
    sans-serif;
}

section h2,
#status-bar h3,
#url-schemes h3 {
  font-weight: 200;
  color: #000;
  line-height: 1em;
  /*  letter-spacing: 1px;*/
}

#status-bar h3,
#url-schemes h3 {
  font-weight: 300;
}

section {
  font-size: 19px;
  line-height: 1.5em;
  font-weight: 300;
  color: #666;
  /*  text-shadow: 1px 1px 1px #fff;*/
  text-align: center;
}

@media only screen and (max-width: 630px) {
  section {
    font-size: 16px;
  }
}

/**************************************************************************/

html {
  background: #ddd;
}

body {
  max-width: 1440px;
  min-width: 1024px;
  margin: 0 auto;

  background: #fff;
  box-shadow: 0 0 5px #777;

  font-family: -apple-system, BlinkMacSystemFont, "HelveticaNeue-Light",
    "Helvetica Neue", Helvetica, Sans, sans-serif;
  font-size: 17px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

em {
  font-family: -apple-system, BlinkMacSystemFont, "HelveticaNeue-LightItalic",
    "Helvetica Neue", Helvetica, Sans, sans-serif;
}

.inner {
  margin: 0 auto;
  width: 960px;
}

@media only screen and (max-width: 750px) {
  body {
    width: 100%;
    min-width: initial;
  }

  .inner {
    width: auto;
    margin: 0 20px;
  }
}

/**************************************************************************/

.appstore-button {
  display: block;
  background: url("images/appstore-button@2x.png");
  background-size: 100%;

  width: 248px;

  opacity: 0.9;

  /* hide text */

  padding-top: 70px;
  height: 0;
  overflow: hidden;
}

.appstore-button:hover {
  opacity: 1;
}

/**************************************************************************/

#header {
  position: relative;
  height: 425px;
  background-color: #f5b79e;
  background-image: url("images/header.jpg");
  background-position: top center;
  background-size: auto 100%;
}

#menubar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.7) 0%,
    rgba(255, 255, 255, 0.7) 55%,
    rgba(0, 0, 0, 0.25) 55%,
    rgba(0, 0, 0, 0.25) 56.25%,
    rgba(0, 0, 0, 0.12) 26.25%,
    rgba(0, 0, 0, 0) 100%
  );
}

#header .inner {
  position: relative;
  z-index: 1;
  background: url("images/header-screenshot.png") right top no-repeat;
  background-size: 306px 206px;
}

#header {
  /*  font-family: $font2;*/
  color: #fff;
  font-weight: 200;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}

#header h1 {
  padding-top: 74px;
  font-weight: inherit;
  letter-spacing: -2px;
  font-size: 112px;
}

#header h1,
#header a {
  color: inherit;
  text-decoration: none;
  line-height: 1em;
}

#header h2 {
  padding-top: 10px;
  font-size: 30px;
  font-weight: 200;
  /*  letter-spacing: -1px;*/
  opacity: 0.9;
}

#header h2 a {
  color: inherit;
  text-decoration: none;
}

#header h2 a:hover {
  text-decoration: underline;
}

#header .appstore-button {
  margin-top: 45px;
}

@media only screen and (max-width: 630px) {
  #header .inner {
    background-position: center top;
  }

  #header h1 {
    padding-top: 180px;
    font-size: 60px;
    text-align: center;
  }

  #header h2 {
    padding-top: 0;
    font-size: 24px;
    text-align: center;
    font-weight: 300;
  }

  #header .appstore-button {
    margin: 20px auto 0;
    width: 186px;
    padding-top: 52px;
  }
}

@media only screen and (max-width: 450px) {
  #header h2 {
    font-size: 22px;
  }

  #header br {
    display: none;
  }

  #header .appstore-button {
    margin: 15px auto 0;
    width: 186px;
    padding-top: 52px;
  }
}

/**************************************************************************/

section {
  padding: 30px 0;
  background: linear-gradient(to bottom, #fff, #f8f8f8);
}

section h2 {
  margin-bottom: 20px;
  font-size: 40px;
}

@media only screen and (max-width: 400px) {
  section h2 {
    font-size: 32px;
  }
}

/**************************************************************************/

#pomodoro {
  /*  text-align: left;*/
}

#pomodoro ol {
  list-style-type: decimal;
  list-style-position: inside;
  margin-bottom: 1em;
  /*  text-align: left;
  width: 400px;
  margin: 0 auto;
  padding-left: 40px;*/
  margin-bottom: 1em;
}

#pomodoro p {
  padding-left: 0;
  padding-right: 0;
}

section a {
  color: #777;
  text-decoration: none;
  border-bottom: 1px solid #999;
}

#pomodoro a:hover {
  color: inherit;
  border: none;
}

/*@media only screen and (max-width : 600px) {
  #pomodoro ol {
    width: auto;

  }
}*/

/**************************************************************************/

#status-bar {
  padding-top: 50px;
  padding-bottom: 40px;

  overflow: hidden;
}

#status-bar .inner > div {
  width: 320px;
  float: left;
}

#status-bar h3 {
  font-size: 30px;
  margin-bottom: 8px;
  margin-top: -10px;
  padding-left: 20px;
  text-align: left;
}

#status-bar p {
  /*  @include helvetica(18px,1.2em);*/
  font-size: 18px;
  /*  line-height: 1.2em;*/
  text-align: left;

  padding-left: 20px;
  padding-right: 30px;
}

#status-bar .screenshot {
  width: 306px;
  height: 0;
  padding-top: 64.38%; /*206px / 320px * 100%;*/
  background-size: 100%;
}

#screenshot1 {
  background-image: url("images/screenshot1.png");
}

#screenshot2 {
  background-image: url("images/screenshot2.png");
}

#screenshot3 {
  background-image: url("images/screenshot3.png");
}

@media only screen and (min-width: 601px) and (max-width: 750px) {
  #status-bar .inner > div {
    width: 33%;
  }

  #status-bar .screenshot {
    width: 100%;
  }

  #status-bar h3 {
    margin-top: 0px;
    padding-left: 10px;
  }

  #status-bar p {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media only screen and (max-width: 600px) {
  #status-bar .inner {
    margin-left: 0;
    margin-right: 0;
  }

  #status-bar .inner > div {
    width: 306px;
    float: none;
    margin: 0 auto 50px;
  }

  #status-bar #screenshot3 {
    padding-top: 80px;
  }

  #status-bar p,
  h3 {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/**************************************************************************/

#reminder {
  text-align: left;
  overflow: hidden;
}

#reminder p {
  padding-left: 0;
  padding-right: 0;
}

#reminder-screenshot {
  width: 430px;
  height: 200px;
  background: url("images/notification.jpg");
  background-size: 489px 246px;
  background-position: top right;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 0.4);

  float: right;
  margin-left: 30px;
}

@media only screen and (max-width: 750px) {
  #reminder-screenshot {
    float: none;
    margin: 0 auto 30px;
    width: auto;
    max-width: 430px;
  }

  #reminder {
    text-align: center;
  }
}

/**************************************************************************/

/*$rmbp-width: 875px;*/
/*$rmbp-height: 530px;*/

#break-window-screenshot-container {
  margin: 20px auto;
  width: 875px;
}

#break-window-screenshot-container-inner {
  position: relative;
  padding-top: 60.57%;
}

#break-window-screenshot {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("images/MacBook.png");
  background-size: 100%;
  box-sizing: border-box;
}

#break-window-screenshot2 {
  position: absolute;
  top: 2.33%; /*51px / $rmbp-width * 100%;*/
  left: 10.2%; /*105px / $rmbp-width * 100%;*/
  background: #111 url("images/MacBookScreenshot.jpg");
  background-size: 100%;
  width: 79.6%; /*666px / $rmbp-width * 100%;*/
  padding-top: 51.65%; /*416px / $rmbp-width * 100%;*/
  /*//    image-rendering: -webkit-crisp-edges;*/
  opacity: 0.9;
}

@media only screen and (max-width: 750px) {
  #break-window-screenshot-container {
    width: 90%;
  }
}

/**************************************************************************/

#url-schemes {
  text-align: left;
  overflow: hidden;
}

#url-schemes p {
  padding-left: 0;
  padding-right: 0;
}

#url-schemes h3 {
  font-size: 28px;
  margin-bottom: 14px;
  margin-top: 28px;
  text-align: left;
}

#url-schemes ul {
  list-style-type: square;
  list-style-position: inside;
  margin-bottom: 1em;
  /*  text-align: left;
  width: 400px;
  margin: 0 auto;
  padding-left: 40px;*/
  margin-bottom: 1em;
}

/**************************************************************************/

#footer {
  height: 350px;
  background: #5a575e url("images/footer.jpg") center top no-repeat;
  background-size: auto 100%;
  image-rendering: -webkit-crisp-edges;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

  color: #ddd;
  font-size: 13px;
  font-weight: 300;
  padding-top: 1px;
  text-align: center;
  line-height: 1.4em;
}

#footer .appstore-button {
  background-image: url("images/appstore-button-big@2x.png");
  width: 371px;
  padding-top: 104px;
  margin: 50px auto 45px;
}

#footer a:not(.appstore-button) {
  color: #fff;
  text-decoration: none;
}

#footer a:hover {
  color: #ddd;
}

#footer p {
  margin-bottom: 0.7em;
}

@media only screen and (max-width: 400px) {
  #footer {
    height: 250px;
  }

  #footer .appstore-button {
    width: 300px;
    padding-top: 84px;
    margin: 25px auto;
  }
}
