/* 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." */
    nav ul {
      list-style: none;
      padding: 10px 15px;
      margin: 0;
      display: flex;
      gap: 20px;
       background-color: rgba(128, 0, 0, 0.8);
      height: 60px;
      
    }
    nav ul li a {
      color: white;
      text-decoration: none;
      padding: 10px 15px;
      display: block;
      font-weight: bold;
      border-right:3px solid black;
    }
    nav ul li a:hover {
      background-color: maroon;
      border-radius: 5px;
    }
      
       body {
  margin: 0;
  padding: 0;
  text-align: center;
  
  background-color: beige;

}

.vaiheväli {
  margin-top: 50px;
}