.topnav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    background-color: black;
    color: white;
  }
  
  .logo-title-container {
    display: flex;
    align-items: center;
    padding-left: 10px;
  }
  
  .logo img {
    height: 70px;
  }
  
  .website-title{
    color: white;
    vertical-align: middle;
    font-family: United Sans;
    display: inline-flex;
    align-items: center;
    font-size: 60px;
    margin-left: 25px;
  }
  
  .nav-buttons {
    align-items: stretch;
    display: flex;
    height: 100%;
  }
  
  .topnav a {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 20px;
    color: #f2f2f2;
    text-decoration: none;
    font-size: 18px;
  }
  
  .topnav a:hover {
    background-color: #ddd;
    color: black;
  }
  
  .topnav a.active {
    background-color: #CEB888;
    color: white;
  }

  @media screen and (max-width: 600px) {
    .website-title {
        font-size: 35px;
    }

    .logo img {
      height: 60px;
    }
}