/* Header */
.large-header {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-size: cover;
  z-index: 1;
  background: #333 url('../img/demo-bg.jpg') center bottom no-repeat;
}


.main-content {
  position: absolute;
  margin: 0;
  padding: 0;
  color: #f9f1e9;
  text-align: center;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  font-family: 'Clicker Script', cursive;
  font-weight: normal;
  font-size: 2em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4), 2px 2px 30px rgba(0, 0, 0, 0.4);
}

.main-title {
  position: relative;
  font-size: 3em;
  margin: 0 0 .5em;
  font-weight: 400;
  padding-left: 10px;
}

.main-title::before {
  content: '';
  width: 20vw;
  height: 20vw;
  min-width: 3.5em;
  min-height: 3.5em;
  background: url(../img/deco.svg) no-repeat center center;
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  z-index: -1;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}
.secondary-title {
  font-weight: 400;
}

.contact-me {
  position: absolute;
  margin:  20px;
  bottom: 0;
  right: 0;
  color: #f9f1e9;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4), 2px 2px 30px rgba(0, 0, 0, 0.4);
}

.contact-me a {
  color: #f9f1e9;
}
.contact-me a:hover,
.contact-me a:focus {
  color: #fff;
}

@media only screen and (max-width: 768px) {
  .main-content {
    font-size: 1.25em;
  }
}