@-webkit-keyframes blink
{
  from
  {
    opacity: 1.0;
  }
  to
  {
    opacity: 0.0;
  }
}

.blink
{
  animation-name: blink;
  -o-animation-name: blink;
  -moz-animation-name: blink;
  -webkit-animation-name: blink;
  
  animation-duration: 1s;
  -o-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -webkit-animation-duration: 1s;
  
  animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  
  animation-timing-function: cubic-bezier(1.0, 0, 0, 2.0);
  -o-animation-timing-function: cubic-bezier(1.0, 0, 0, 2.0);
  -moz-animation-timing-function: cubic-bezier(1.0, 0, 0, 2.0);
  -webkit-animation-timing-function: cubic-bezier(1.0, 0, 0, 2.0);
}

body
{
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: black;
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("http://petricore.systems/wp-content/uploads/2017/05/Background_Plexus_Dark.jpg");
}

.container
{
  height: 100vh;
  transform: translate(0,50%);
}

.content
{
  margin: auto;
  width: 40vw;
  transform: translate(0,-50%);

  color: white;
  text-align: center;
}

h1
{
  margin: 0 0 20px 0;
  padding: 0;
  font-family: Oswald;
  font-size: 3.75vw;
  font-variant: small-caps;
}

p
{
  margin: 0;
  padding: 0;
  font-family: Arial;
  font-size: 1.25vw;
  line-height: 1.5em;
}

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

a:hover
{
  text-decoration: underline;
}

.author {
  margin-top: 10px;
}

/* Responsive Styles Smarthpones And Above */
@media only screen and (min-width: 0px) {
  .content {
    width: 80vw;
  }
  h1 {
    font-size: 9.5vw;
  }
  p {
    font-size: 18px;
    text-align: left;
  }
}

/* Responsive Styles Smartphones and Above (Larger) */
@media only screen and (min-width: 511px) {
  h1 {
    font-size: 48px;
  }
}

/* Responsive Styles Tablet and Below */
@media only screen and (max-width: 680px) {
  .author {
    text-align: right;
  }
}

/* Responsive Styles Tablet And Above */
@media only screen and (min-width: 681px) {
  .content {
    width: 80vw;
  }
  h1 {
    font-size: 7.2vw;
  }
  p {
    font-size: 2.4vw;
    text-align: center;
  }
}

/* Responsive Styles Laptop And Above */
@media only screen and (min-width: 981px) {
  .content {
    width: 55vw;
    width: 790px;
  }
  h1 {
    font-size: 5.1vw;
    font-size: 70px;
  }
  p {
    font-size: 1.7vw;
    font-size: 24px;
  }
}