html {
  height: 100%;
}

body {
  height: 100%;
  /* color: #333333; */
  /* font-family: "Fredoka", sans-serif; */
  font-family: "Oswald", 'Inconsolata', 'Droid Sans', serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.font-fam-oswald { 
    /* color: rgb(17, 51, 51); */
    font-family: "Oswald", 'Inconsolata', 'Droid Sans', serif;
    /* font-size: 3vh; */
}

.my-photo {
  width: 100%;
  filter: grayscale(70%);
  box-shadow: 5px 4px 15px -2px rgba(0,0,0,0.55);
  -webkit-box-shadow: 5px 4px 15px -2px rgba(0,0,0,0.55);
  -moz-box-shadow: 5px 4px 15px -2px rgba(0,0,0,0.55);
}

.content-1 {
  display: flex;
  flex-direction: column;
}

.social-links a {
  font-size: 1.1rem;
  color: #000000;
  /* text-decoration: none; */
}

.social-links a:hover {
  color: #4f3f2f;
  /* font-weight: 520; */
  cursor: pointer;
}

/* <uniquifier>: Use a unique and descriptive class name */
/*  <weight>: Use a value from 300 to 700 */
/*  <width>: Use a value from 75 to 125 */

.fredoka-weight-700 {
  font-family: "Fredoka", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.footer {
    /* background-color: #212529; */
    /* background-color: #32383f; */
    color: white;
    text-align: center;
}

/* Taken from Bootstrap 
  clipboard.js

  JS-based `Copy` buttons for code snippets.
*/

.bd-clipboard {
  position: relative;
  display: none;
  float: right;

  + .highlight {
    margin-top: 0;
  }
}

.btn-clipboard {
  /* position: absolute; */
  float: inline-end;
  top: .5rem;
  right: .5rem;
  z-index: 10;
  display: block;
  padding: .25rem .5rem;
  font-size: 75%;
  color: #74876c;
  cursor: pointer;
  background-color: transparent;
  border: 0;
  border-radius: .25rem;

  &:hover {
    color: #fff;
    background-color: #677068;
  }
}

@media (min-width: 768px) {
  .bd-clipboard {
    display: block;
  }
}