body {
  font-family: 'Work Sans', sans-serif;
  /*font-weight: 300;*/
  margin: 0px;
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: center;
  min-height: 100vh;
  color: #f2f2f2;
  background-color: #111;
}

header {
  font-family: 'Spectral', serif; 
  text-align: left;
  width: 100vw;
  position: relative;
}

h1 {
  font-size: 60px;
  font-weight: 300 !important;   
  padding-left: 100px;
  padding-right: 100px;
  line-height: 1em;
}


.comma {
  color: #00bfff;
}


a {
  color: #f2f2f2;
  text-decoration: none;
  /*border-bottom: 2px solid #00bfff;*/
}

section#contact {
  padding: 100px;
  bottom: 0px;
  left: 0px;
  position: absolute;
  text-align: left;
}

h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  header {
    padding: 20px 0; 
  }

  h1 {
    padding: 20px;
    font-size: 50px;
  }



  section#contact {
    display: flex;    
    text-align: center;
    padding: 20px;
  }

  h3 {
    font-size: 20px;
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  header {
    position: static;
  }

  section#contact {
    position: static;
    padding-bottom: 0;
  }
}

@media (max-height: 500px) {
  header {
    position: static;
  }

  section#contact {
    position: static;
    padding-bottom: 0;
  }
}


