/* poppins-regular - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/poppins-v5-latin-regular.eot'); /* IE9 Compat Modes */
  src: local('Poppins Regular'), local('Poppins-Regular'),
       url('/fonts/poppins-v5-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/fonts/poppins-v5-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('/fonts/poppins-v5-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('/fonts/poppins-v5-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/fonts/poppins-v5-latin-regular.svg#Poppins') format('svg'); /* Legacy iOS */
}

/* poppins-700 - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('/fonts/poppins-v5-latin-700.eot'); /* IE9 Compat Modes */
  src: local('Poppins Bold'), local('Poppins-Bold'),
       url('/fonts/poppins-v5-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/fonts/poppins-v5-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('/fonts/poppins-v5-latin-700.woff') format('woff'), /* Modern Browsers */
       url('/fonts/poppins-v5-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/fonts/poppins-v5-latin-700.svg#Poppins') format('svg'); /* Legacy iOS */
}

/* Global stuff */

* { outline: none !important; }

html {
  min-height: 100%;
  height:100%;
}

body {
  margin: 0px;
  padding: 0px;
  display:flex;
  flex-direction: column;
  align-content: space-between;
  justify-content: space-between;
  color: #eee;
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-size: calc(16px + 1vw);
  background:#000 url(../images/running.jpg) no-repeat top center;
  background-size:cover;
}

.content {
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    content: " ";
    position: absolute;
    background: rgba(0,0,0,.5);
}

body.morning {
  background:#fff url(../images/bg-morning.jpg) no-repeat top center;
  background-size:cover;
  color: #fff;
}
body.evening {
  background:#fff url(../images/bg-evening.jpg) no-repeat top center;
  background-size:cover;
  color: #fff;
}
body.night {
  background:#fff url(../images/bg-night.jpg) no-repeat top center;
  background-size:cover;
  color: #fff;
}

* {
  margin: 0;
  padding: 0;
  line-height: 1.4;
}

p {
  font-size: .7em;
}

a {
  color: inherit;
}

header,
.main,
footer {
  display: flex;
}

header {
  height: 2em;
}

/* Main part */

.main {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height:20em;
}

.main h1,
.main h2 {
  font-weight: normal;
  text-align: center;
}

.main h1 {
  opacity: .7;
  font-size: calc(0.2em + 9vw);
}

.main h2 {
  font-size: .7em;
  max-width: 70%;
  margin-top: 1em;
}

.main p {
  max-width: 70%;
  margin-top:1em;
  text-align: center;
}


/* Footer */

footer {
  width: 100%;
  height: 2em;
  overflow: hidden;
}

.social {
  display: flex;
  margin:0 auto;
  font-size: 1.5em;
}

.social a {
  display: inline-block;
  color: #fff;
  opacity: .8;
  transition: opacity 0.3s linear;
}

.social a:hover {
  opacity: 1;
}

.evening .social a,
.night .social a,
.morning .social a {
  color: #fff;
}

