@charset "utf-8";
/* CSS Document */

/* Add a black background color to the top navigation */
.topnav {
  background-color: firebrick;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: white ;
  color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: #04AA6D;
  color: white;
}
footer {
  background-color:  firebrick; /* Dark background color */
  color: #fff; /* White text color */
  padding: 10px; /* Spacing inside the footer */
  text-align: center; /* Center-align text content */
  font-family: Arial, sans-serif; /* Font style */
  font-size: 14px; /* Font size */
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
} 
body {
  background: lightblue;
}
img {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 5px;
  width: 150px;
}
main {
    font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, "serif";
}