@font-face {
    font-family: Lato;
    src: url(font/Lato-Regular.ttf);
  }
  
  html * {
    font-family: Lato;
  }

  main {
    margin-top: 4em;
    margin-left: 4em;
    margin-right: 4em;
  }
  
  html, body {
    margin: 0;
    /* height: 100%; */
  }
  
  .navbar {
    overflow: hidden;
    position: fixed; /* Set the navbar to fixed position */
    top: 0; /* Position the navbar at the top of the page */
    width: 100%; /* Full width */
    border-radius: 5px;
    background-color: #89CFF0;
  }
  
  .navbar a {
    float: left;
    color: black;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    font-size: 18px;
    line-height: 25px;
    border-radius: 4px;
  }
  
  .navbar a.logo {
      font-size: 25px;
      font-weight: bold;
  }
  
  .navbar a:hover {
    background-color: #ddd;
    color: black;
  }
  
  .navbar a.active {
    background-color: dodgerblue;
    color: white;
  }
  
  .navbar-right {
    float: right;
  }
  
  html {
    background-color: #034694;
  }

  .flex-container {
    display: flex;
    margin-top: 20px;
    background-color: #B0C4DE;
    border: 2px solid black;
    border-radius: 10px;
  }
  .flex-child {
    flex: 1;
    margin-left: 10%;
  }

