/*@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;700&display=swap');*/

/* Typo */
/* rubik-regular - latin */
@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 400;
  src: local(''),
       url('../fonts/rubik-v14-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/rubik-v14-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* rubik-700 - latin */
@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 700;
  src: local(''),
       url('../fonts/rubik-v14-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/rubik-v14-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}


/* Reset */
html, body, h1, p, a, div, section {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font: inherit;
}

/* Background */
body {
  background-image: url(../images/background.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-color:#464646;
}

/* Basic */
body { 
  font: 18px/23px 'Rubik', sans-serif;
  color: #ffffff;
}

h1 {
  color: #efecec;
  text-transform: uppercase;
  font-size: 4.25rem;
  line-height: 50px;
  font-weight: 700;
  margin-top: 20px;
}

a {
  color: #ffffff;
}

p {
  margin: 0 0 15px 0;
}

strong {
  font-weight: 700;
}

/* Layout */
.container {
  display: table;
  padding-top: 20vh;
  max-width: 900px;
  margin: 0 auto;
}
.content {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  padding: 0px 20px 0px 20px;
}

/* Text */
.text {
  margin: 50px auto;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.8em;
}
.contact {
  margin: 50px auto;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.8em;
}


/* Media Queries */
@media only screen and (max-width: 767px) {
  body {
    background-image: url(../images/background.jpg);
  }
  .content {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    padding: 0px 10px 0px 10px;
  }
}
@media only screen and (max-width: 375px) {
  .container {
    position: relative;
    display: block;
    float: left;
    vertical-align: baseline;
    margin: 0 auto;
    padding: 80px 0 0 0;
  }
  .content {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    padding: 0px 5px 0px 5px;
  }
  body h1 {
    font-size: 3rem;
    line-height: 23px;
  } 
  .text {
    font-size: 1.2rem;
    line-height: 1.6em;
  }
  .contact {
    font-size: 1.1rem;
    line-height: 1.4em;
  }
  html, body, .container {
    height: auto;
  }
}


