﻿body {
  background-image: url('forest_bg.png');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

/* unvisited link */
a:link {
  font-family: 'Brush Script MT', cursive;
  color: DimGrey;
  text-decoration: none;    
}

/* visited link */
a:visited {
  font-family: 'Brush Script MT', cursive;
  color: DarkSlateGray;
  text-decoration: none;   
}

/* mouse over link */
a:hover {
  font-family: 'Brush Script MT', cursive;
  color: DodgerBlue;
  text-decoration: none;   
}

/* selected link */
a:active {
  font-family: 'Brush Script MT', cursive;
  color: DeepSkyBlue;
  text-decoration: none;   
}

H1 {
  color: Teal;
}


.header {
  margin: auto;
  width: 50%;
  padding: 10px;
  position: relative;
  text-align: center;
}

.links {
  margin: auto;
  width: 50%;
  padding: 10px;
  position: relative;
  text-align: center;
  color: DimGrey;
}

.centered {
  position: absolute;
  top: 48%;
  left: 48%;
  transform: translate(-50%, -50%);
  max-width: 260px;
  margin: auto;
  font-family: 'Garamond', serif;
}