
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400');

html, body {
    height: 100%;
    width: 100%;
}

body {
  background: #15474E;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 300;
  letter-spacing: 0.05rem;
  margin: 0;
}

a {
  color: #F3F2F1;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1, h2, h3 {
  margin: 0;
  padding: 0;
  letter-spacing: 0.1rem;
}

h1 {
  font-size: 3.6rem;
}

video.background {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -999;
}

.center {
  text-align: center;
}

.centerPseudo {
    display: inline-block;
    text-align: center;
}

.centerPseudo::before {
    content: '';
    display: inline-block;
    height: 90%;
    vertical-align: middle;
    width: 0px;
}

div.container {
  height: 100%;
  width: 100%;
}

div.content {
  background-color: rgba(4, 40, 48, 0.7);
  border: 1px solid #177D8C;
  border-bottom: 8px solid #177D8C;
  border-top-left-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.75);
  color: #F3F2F1;
  margin-top: 1rem;
  padding-bottom: 1rem;
  vertical-align: middle;
  width: 600px;
}

div.content ul {
  display: inline-block;
  list-style: none;
  margin: 1rem 3rem;
  padding: 0;
}

div.content ul li {
  display: block;
  height: 32px;
  margin: 1rem 0;
  text-align: left;
}

div.content ul li a {
  display: block;
  height: 100%;
}

div.content ul li a img {
  margin-right: 0.8rem;
  margin-top: -3px;
  max-width: 32px;
  max-height: 32px;
  vertical-align: middle;
}

div.content p {
  color: rgb(172, 172, 172);
  font-size: 0.9rem;
  margin: 0;
}

div.content p.slogan
{
  margin-top: 0.5rem;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.4rem;
  font-weight: 400;
}

footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  color: #86979E;
  padding: 0.5rem;
  font-size: 0.8rem;
}


/** Mobile */

@media only screen and (max-width: 640px) {
  a {
    text-decoration: underline;
  }

  .centerPseudo::before {
    height: 16%;
  }

  div.content {
    width: 100%;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  h1 {
    font-size: 3rem;
  }
}

@media only screen and (max-width: 480px) {
  h1 {
    font-size: 2.4rem;
  }

  div.content p.slogan
  {
    font-size: 1.1rem;
    letter-spacing: 0.3rem;
  }
}

@media only screen and (max-width: 400px) {
  div.content ul {
    margin: 1rem 1.5rem;
  }

  h1 {
    font-size: 1.9rem;
  }

  div.content p.slogan
  {
    font-size: 1rem;
    letter-spacing: 0.2rem;
  }
}

@media only screen and (max-height: 440px) {
  h1 {
    font-size: 1.9rem;
  }

  .centerPseudo::before {
    display: none;
  }

  div.content {
    margin-top: 0;
    width: 100%;
    border-radius: 0;
    border: 0;
    border-right: 0;
    height: 100%;
    box-shadow: none;
  }

  div.content ul {
    margin: 0.5rem 3rem;
  }

  div.content ul li {
    margin: 0.5rem 0;
  }

  div.content p.slogan
  {
    font-size: 1rem;
    letter-spacing: 0.2rem;
  }
}