/* ========================================
GENERAL
======================================== */
@import url(https://fonts.googleapis.com/css?family=Cabin:400);

body {
  margin: 0;
}

/* ----------
fonts/text
---------- */
body, h1, h2, h3, h4, h5, h6, p, a, em, strong {
  font-family: 'Cabin', sans-serif !important;
  font-weight: 400 !important;
  letter-spacing: 0.5px;
  color: #000;
  font-size: 16px;
}

a {
  text-decoration: none;
  -webkit-transition: all 100ms ease-out;
          transition: all 100ms ease-out;
}

a:hover {
  color: #444;
  -webkit-transition: all 100ms ease-out;
          transition: all 100ms ease-out;
}

h1 {
  font-size: 30px;
  font-weight: 400;
  margin: 0;
}

h2 a {
  font-size: 17px;
  margin: 5px;
}

/* ----------
vertically align
---------- */
.vertical-align-parent {
  display: table;
  width: 100%;
}

.vertical-align {
  display: table-cell;
  vertical-align: middle;
}

/* ----------
custom animation
---------- */
.delay-1 {
  -webkit-animation-delay: 150ms;
          animation-delay: 150ms;
}

.delay-2 {
  -webkit-animation-delay: 300ms;
          animation-delay: 300ms;
}

.delay-3 {
  -webkit-animation-delay: 450ms;
          animation-delay: 450ms;
}

.delay-4 {
  -webkit-animation-delay: 600ms;
          animation-delay: 600ms;
}


/* ========================================
PAGE
======================================== */
.logo {
  max-width: 90%;
  max-height: 180px;
  margin-bottom: 40px;
}

.main-container {
  height: 100vh;/* 
  background: #fff url("../img/background.jpg") no-repeat fixed center;
  background-size: cover;
  -webkit-box-shadow: inset 0px 0px 0px 8px rgba(255,255,255,1);
     -moz-box-shadow: inset 0px 0px 0px 8px rgba(255,255,255,1);
          box-shadow: inset 0px 0px 0px 8px rgba(255,255,255,1); */
}

.content {
  text-align: center;
  max-width: 400px;
}


/* ========================================
RESPONSIVE STYLING
======================================== */
/* small screens */
@media only screen and (max-width: 40em) {
  h1 {
    font-size: 20px;
  }

  h2 a {
    font-size: 15px;
  }
}

/* medium screens */
@media only screen and (max-width: 64em) {}

/* large screens */
@media only screen and (max-width: 90em) {}

/* xlarge screens */
@media only screen and (max-width: 120em) {}

/* xxlarge screens */
@media only screen and (min-width: 120.063em) {}