/*
 * These style rules are not required.
 * They are only for the look-and-feel of this demo.
 */
@font-face {
  font-family: "Noto Sans";
}


@font-face {
    font-family: "Gothem Bold";
    src: url("../fonts/Gotham-Bold.ttf") format("truetype");
}


html,
body {
  padding: 0px;
  margin: 0px;
  font-family: Prompt, "db airy std", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.87);
  background-color: #FFFFFF;
}

h1,
h2 {
  font-family: "Noto Sans Bold", sans-serif;
}

h1 {
  font-size: 44px;
  letter-spacing: 2px;
}

h2 {
  font-size: 32px;
}

.header {
  padding: 50px 22px;
  min-height: 240px;
  text-align: center;
  color: #fff;
  background-color: #3f51b5;
}

.section {
  width: 96%;
  max-width: 960px;
  margin: 80px auto 80px auto;
  text-align: center;
}

.footer {
  padding: 25px;
  text-align: center;
}

.column {
  display: inline-block;
  width: 320px;
  text-align: center;
}

.column div {
  margin: 0px auto;
}

.original {
  display: inline-block;
  margin: 0px auto;
}

.tagline {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.6);
}

.original, 
.circular--square,
.circular--landscape,
.circular--portrait {
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 690px) {
  .original {
    margin-bottom: 50px;
  }
}

.call-to-action {
  display: block;
  width: 200px;
  line-height: 30px;
  margin: 0px auto;
  padding: 10px;
  font-family: "Noto Sans Bold";
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  border-radius: 4px;
  background-color: #009688;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s, box-shadow 0.3s;
}

.call-to-action:hover {
  background-color: #00acc1;
  box-shadow: 0px 2px 3px 1px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s, box-shadow 0.3s;
}


.container {
    position: relative;
    text-align: center;
    color: white;
}

.bottom-left {
    position: absolute;
    bottom: 8px;
    left: 16px;
}

.top-left {
    position: absolute;
    top: 8px;
    left: 16px;
}

.top-right {
    position: absolute;
    top: 8px;
    right: 16px;
}

.bottom-right {
    position: absolute;
    bottom: 8px;
    right: 16px;
}

.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	font-family: "Gothem Bold";
	font-size: 14px;
}