/* Global Styles */

html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

h1 {
  padding: .25em 0em;
  margin: 0;
  font-size: 3em;
  font-weight: 200;
  font-family: 'Lato', sans-serif;
  z-index: 2031;
  color: #333333;
  line-height: 1.1;
}

h2 {
  font-size: 38px;
  font-family: 'Lato', sans-serif;
  color: #333333;
  font-weight: 500;
  margin: 0;
}

h3 {
  font-weight: 500;
  color: #333333;
}

a {
  color: #c9563f;
  text-decoration: none;
}

p {
  font-family: 'Helvetica', sans-serif;
  color: #333333;
}

hr {
  border-top: 3px solid;
  width: 50px;
  color: #5F9EA0;
}

.center {
  margin: auto;
  padding: 10px;
}

.text-center {
  text-align: center;
}

/* Header Styles */

.header {
  display: table;
  height: 100%;
  width: 100%;
  position: relative;
  /*background: url("../img/bg2.jpg") no-repeat center center fixed;*/
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.header h3 {
  overflow: hidden;
  text-align: center;
  font-style: italic;
  font-size: 20px;
  font-family: "PT Serif", Georgia, serif;
}

.header h3:before,
.header h3:after {
  background-color: #5F9EA0;
  content: "";
  display: inline-block;
  height: 2px;
  position: relative;
  vertical-align: middle;
  width: 50%;
}

.header h3:before {
  right: 0.5em;
  margin-left: -50%;
}

.header h3:after {
  left: 0.5em;
  margin-right: -50%;
}

.vert-text {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  padding-bottom: 5em;
}

.header-container {
  width: 290px;
  margin: 0 auto;
}

/* Footer */

footer {
  max-width: 200px;
}

footer p {
  font-size: 13px;
}

/* Socials */

.social-icons i {
  color: #c9563f;
}

.social-icons i:hover {
  color: #5F9EA0;
}

.social-icons {
  font-size: 1.3em;
  display: flex;
  justify-content: space-around;
}

/* Arrow Icons */

.arrow {
  position: absolute;
  bottom: 2%;
  width: 100%;
}

.arrow-linky a {
  font-size: 46px;
  text-decoration: none;
}

.arrow-linky {
  -webkit-transition:-webkit-transform .8s;
  -moz-transition:-moz-transform .8s;
  transition:transform .8s;
  width: 45px;
  margin: 0 auto;
}

.arrow-linky:hover {
  text-decoration: none;
  cursor: pointer;
  -webkit-transform:rotate(360deg);
  -moz-transform:rotate(360deg);
  transform:rotate(360deg);
}

.arrow-down {
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-top: 40px solid;
  color: #c9563f;
  margin: 0 auto;
}

/* About Me */

#about {
  padding-left: 20px;
  padding-right: 20px;
  max-width: 600px;
  margin-bottom: 75px;
}

.about-text {
  line-height: 1.6em;
}

.about-text a:hover {
  text-decoration: underline;
}

/* Breakpoints */
@media (min-width: 600px) {
  .header-container {
    width: 600px;
  }
  .vert-text h1 {
    font-size: 4.5em;
  }
}

/* fade in */

.vert-text {
    -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 2s; /* Firefox < 16 */
        -ms-animation: fadein 2s; /* Internet Explorer */
         -o-animation: fadein 2s; /* Opera < 12.1 */
            animation: fadein 2s;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

