/* initiaise fonts */

h1 {
    
    font-family: 'Rock Salt', cursive;
    padding-bottom: .75em;
}
h2, h3, h4, h5, h6 {
    
    font-family: 'Rock Salt', cursive;

}
body {
    
    font-family: 'Crimson Text', serif;
    font-weight: 100;
}

.text-white:hover, .text-muted:hover {
    
    text-decoration: none;
}

/* background images */

#about {

  background: url('../img/robbie-sketch.jpg')  no-repeat center center;
      -webkit-background-size: cover;
      -moz-background-size: cover;
      background-size: cover;
      -o-background-size: cover;
}

#music {

  background: url('../img/guitar-back.jpg')  no-repeat center center;
      -webkit-background-size: cover;
      -moz-background-size: cover;
      background-size: cover;
      -o-background-size: cover;
}

/* layout */

html, body {
    
    height: 100%;
}

.gallery {
    
    width: 100%;
}
img.gallery:hover {
    
    opacity: .5;
}

/* colour */

.faded-bg {
    
    background: rgba(255, 255, 255, .5);
}

/* behaviour */
html {
  scroll-behavior: smooth;
}