html {
    height: 100%;
    width: 100%;
    background-color: #f5faff;
  }
  
  .title {
    font-family: 'Times New Roman', Times, serif;
    font-size: 40px;
    color: #13367c;
    text-align: center;
    margin: 0;
    padding: 0;
  }
  
  /* Add a black background color to the top navigation */
  .topnav {
    background-color: cornflowerblue;
    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: #ddd;
    color: black;
  }
  
  /* Add a color to the active/current link */
  .topnav a.active {
    background-color: deepskyblue;
    color: white;
  }
  
  .sources {
    text-align: left
  }
  
  .main-text {
    font-family: 'Times New Roman', Times, serif;
    font-size: 25px;
    color: black;
    text-align: left;
    margin: 0;
    padding: 0;
    font-weight: bold;
  }
  
  .subtitle {
    font-family: 'Times New Roman', Times, serif;
    font-size: 35px;
    color: #13367c;
    text-align: left;
    margin: 0;
    padding: 0;
  }
  
  .container {
    position: relative;
    text-align: center;
    color: white;
  }
  
  .centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 55px;
    font-family: 'Courier New', monospace;
  }
  
  .background-image {
    width: 100%;
    filter: blur(3px);
    height: 300px;
    object-fit: cover;
    object-position: 25% 25%;
  }
  
  .side-container {
    display: flex;
    align-items: top;
    justify-content: top;
  
  }
  
  .side-text {
    font-family: 'Times New Roman', Times, serif;
    font-size: 25px;
    color: black;
    text-align: left;
    margin: 0;
    padding: 0;
    font-weight: bold;
    float: left;
  }
  
  .side-img {
    height: 300px;
  }
  
  .subtitle2 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 30px;
    color: #13367c;
    text-align: left;
    margin: 0;
    padding: 0;
  }