/* 
https://danmarshall.github.io/google-font-to-svg-path/ 
https://fonts.google.com/specimen/Open+Sans+Condensed?sort=popularity&preview.text=dmark&preview.text_type=custom#pairings
https://getbootstrap.com/docs/4.0/components/navbar/
https://colorhunt.co/palette/273394

font-family: 'Open Sans', sans-serif;
font-family: 'Open Sans Condensed', sans-serif;
font-family: 'Playfair Display', serif;


font-family: 'Noto Serif', serif;
font-family: 'Oswald', sans-serif;
*/

body {
  font-family: "Oswald", sans-serif;
  font-size: 1.1rem;
  padding-top: 100px;

  position: relative;
  min-height: 100%;
  min-height: 100vh;

}
.main {
  /* fixes the footer running into stuff on resize */
  padding-bottom: 100px; 
}

p {
  font-family: "Noto Serif", serif;
  font-size: 1rem;
}

.nav-custom {
  background-color: #48466d;
}

/* my large picture */
.me {
  max-width: 80%;
  max-height: 80%;
}

/* scourge! */
.scourge {
  max-height: 80%;
  max-width: 80%;
  
}

/* Footer stuff--> not fun... */
.footer {
  position: absolute;
  padding-top: 100px;
  right: 0;
  bottom:0;
  left:0;
}
.footer p {
  font-size: 0.70rem;
  
}

.profile-text {
  font-size: .90rem;
  font-weight:500;
}


.social-buttons {
  margin-bottom: 10px;
}
.social-icon {
  padding: 5px;
  color:  #48466d;
  
}
.social-buttons a {
  text-decoration: none;
}

/* Media Query management */
@media (max-width: 768px) {
  .me {
      max-width: 45%;
  }
  .profile-block {
    /* border-bottom: 10px; */
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }
}