/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: #bed5c6;
  color: black;
  font-family: Arial;
}

a {
  text-decoration: none;
  color: #ffe48d;
}

p { 
  font-family: Serif;
}

ul {
  font-family: Serif;
}

h2 { 
  text-decoration: underline; 
  text-transform: capitalize;
}

.header {
  background-color: #0f8a88;
  padding: 50px;
  text-align: center;
}

.header-img{
  width: 100%;
  height: 100px;
  background: url('Screenshot_1.png');
  background-size: cover;
  text-align: center;
}

.topnav {
  overflow: hidden;
  background-color: #333;
}

/* Style the topnav links */
.topnav a {
  float: none;
  display: block;
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  background-color: #ff8797; 
}

/* Change color on hover */
.topnav a:hover {
  background-color: #ff954f;
  color: black;
}

.footer {
  background-color: #f1f1f1;
  padding: 10px;
  text-align: center;
}