@import url('css?family=Quicksand');

html,body{
  height: 100%;
  padding: 0;
  margin: 0;
}

.wrapper {
  height: 100%;
  font-family: 'Quicksand', sans-serif;
  line-height: 1.5;
  word-spacing: 4px;
  letter-spacing: 1px;
}

.fixed-bg {
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 85%; 
  width: 100%;
  color: hsl(349, 100%, 44.7%);
  text-align: center;
  display: table;
}

.fixed-bg h1 {
  display: table-cell;
  vertical-align: middle;
  font-size: 65px;
}

.scroll-bg {
  background-color: #0f0f0a;
}


/* first section */

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: #008CBA;
}


.bg-1 {
  background-image: url("Ridgely.jpg");
}

/* third section */

.bg-2 {
  background-image: url('Thawley.jpg');
}

/* fifth section */

.bg-3 {
  background-image: url('Bridgetown.jpg');
}



a:link, a:visited {
  background-color: hsl(349, 100%, 44.7%);
  color: white;
  font-size: 30px;
  padding: 14px 25px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  width :100%;
  opacity: 0.4;
  transition: 0.3s;
}

a:hover, a:active {
  background-color: hsl(359, 54.4%, 31.0%);
  opacity: 1
}