 /* Style buttons */
.btn {
  background-color: DodgerBlue;
  border: none;
  color: white;
  padding: 12px 30px;
  cursor: pointer;
  font-size: 20px;
}

/* Darker background on mouse-over */
.btn:hover {
  background-color: RoyalBlue;
} 

/*typography*/

h1 {
font-family: "aurea-ultra", serif;
font-weight: 400;
font-style: normal;
}

h3 {
font-family: "ubuntu-mono", monospace;
font-weight: 400;
font-style: normal;
}

h4 {
font-family: "aurea-ultra", serif;
font-weight: 400;
font-style: normal;
font-size: 1.5rem;
}

p {
font-family: "ubuntu-mono", monospace;
font-weight: 400;
font-style: normal;
}

small {
   font-family: "ubuntu-mono", monospace;
font-weight: 400;
font-style: normal; 
}

/*nav*/

li {
font-family: "ubuntu-mono", monospace;
font-weight: 400;
font-style: normal; 
}

/* unvisited link */
a:link {
    color: black;
    text-decoration: none;
}

/* visited link */
a:visited {
    color: #403d39;
}

/* mouse over link */
a:hover {
    color: OrangeRed;
}

/* selected link */
a:active {
    color: #ff595e;
}

a {
font-family: "ubuntu-mono", monospace;
font-weight: 400;
font-style: normal; 
}

