html {
  color: white;
  font-family: 'Audiowide', sans-serif;
  background: linear-gradient(90deg, #F3904F 0%, #bc0194 50%, #6b05aa 100%);
}

body {
  margin: 0;
  min-height: 100%;
}

.title {
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

/** Downward pointing svg arrow:
* https://codepen.io/brysenackx/pen/XjAAGR
*/
.center-con {
    display: flex;
    align-items: center;
    justify-content: center;
}

.round {
    position: relative;
    border: 3px solid #fff;
    width: 100px;
    height: 100px;
    border-radius: 100%;
}

span.arrow {
    z-index: 999;
    height: 3px;
    margin:1px;
    width: 30px;
    background: #fff;
    transition: 0.4s ease;
}

span.arrow:first-child {
    display: block;
    position: absolute;
    transform: rotate(45deg);
    left: 25%;
    bottom: 35%;
}

span.arrow:nth-child(2) {
    display: block;
    position: absolute;
    transform: rotate(-45deg);
    left: 45%;
    bottom: 35%;
}

span.arrow:nth-child(3) {
    display: block;
    position: absolute;
    transform: rotate(45deg);
    left: 25%;
    bottom: 54%;
}

span.arrow:nth-child(4) {
    display: block;
    position: absolute;
    transform: rotate(-45deg);
    left: 45%;
    bottom: 54%;
}

.round:hover span:nth-child(1) {
    transform: rotate(-135deg);
}

.round:hover span:nth-child(2) {
    transform: rotate(135deg);
}

.round:hover span:nth-child(3) {
    transform: rotate(225deg);
}

.round:hover span:nth-child(4) {
    transform: rotate(-225deg);
}

/** Arrow Down End */

.subtitle {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

h1 {
  text-shadow: 10px 10px 50px rgba(0,0,0,1);
  font-size: 5em;
}

h2 {
  font-size: 40px;
  letter-spacing: .1em;
}


/** Mobile styles */
.content {
  padding: 30px;
  width: 80%;
  margin: 30px auto;
  background: linear-gradient(90deg, #6b05aa 0%, #bc0194 50%,  #F3904F 100%);
  border-radius: 10px;
  border: 3px solid white;
  transform: scale(0.95);
  transition: 0.4s;
}

p {
  font-size: 1.2em;
  font-family: 'Lato';
  font-weight: bold;
}

span.get {

  position:absolute;
  font-family: monospace;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 2.4em;
  padding: 5px;
  transform: translate(-50px, -20px) rotate(-20deg);
}


h3 {
  font-size: 30px;
  padding-top: 15px;
  letter-spacing: .1em;
}

div.img-viewport {
  width: 200px;
  height: 200px;
  display:block;
  border-radius: 100px;
  margin: 0 auto;
}

img {
  height: 100%;
  width: 100%;
  border-radius: 100px;
  display: block;
  margin: 0 auto;

}

/** Desktop / tablet styles */
@media only screen and (min-width: 1000px) {
  .content {
    width: 50%;

  }

  .content.active {
    transform: scale(1);
  }

  p {
    font-size: 20px;
  }

}
