/**
 * Cubretech
 *
 * Mobile-first approach.
 *
 * @author JacoboFB <jacobofb@gmail.com>
 * @package cubretech
 * @since 0.0.1
 */


/* XS: 320px - 576px
----------------------------------------------------------------------------- */
html,
body {
  min-width: 320px;

  font-family: sans-serif;
  font-size: 0.5em;
  line-height: 1.6;
}

header nav span {
  color: #80d0c7 !important;
}

section {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 100%;
}

article {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  /* background: pink; */
  background: rgba(0,0,0, 0.33);
  border: 1px solid #ffffff;
  box-shadow: 0px 5px 50px white;
}

h1 {
  margin: 0;
  padding: 0.5em 1em 0em;

  color: #ffffff;
  font-size: 5em;
  font-weight: 900;
  text-align: center;
}

h2 {
  margin: 0;
  padding: 0.5em 1em 0em;
  
  color: #dddddd;
  font-size: 2.1em;
  font-weight: 900;
  text-align: center;
}

h1 + h2 {
  padding-top: 0;
}

p {
  margin: 0;
  padding: 2em 1em;
  
  color: #cfcfcf;
  font-size: 1.6em;
  font-weight: bold;
  letter-spacing: 1px;
  text-align: center;
}

footer span {
  color: #ffffff;
  font-size: 1.1em;
}


/* SM: > 576px
----------------------------------------------------------------------------- */
@media (min-width: 576px) {
  body {
    font-size: 0.9em;
  }
}


/* MD: > 768px
----------------------------------------------------------------------------- */
@media (min-width: 768px) {
  body {
    font-size: 1.2em;
  }
}


/* LG: > 992px
----------------------------------------------------------------------------- */
@media (min-width: 992px) {
  body {
    font-size: 1.4em;
  }
}


/* XL: > 1200px
----------------------------------------------------------------------------- */
@media (min-width: 1200px) {
  body {
    margin: auto;
    max-width: 1920px;

    font-size: 1.6em;
  }
}