.topnav {
    overflow: hidden;
    background-color: #030000;
  }.topnav a {
    float: left;
    display: block;
    color: #fdfdfa;
    text-align: center;
    padding: 10px 7px;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    
  }.topnav a:hover {
    background-color: #f3f1ee;
    color: black;
  }.topnav a.active {
    background-color: #f3f1ee;
    color: black;
    font-weight: bold;
  }.topnav .icon {
    display: none;
  }	
  @media screen and (max-width: 600px) {
    .topnav a:not(:first-child) {display: none;}
    .topnav a.icon {
      float: right;
      display: block;
    }
  }	
  @media screen and (max-width: 600px) {
    .topnav.responsive {position: relative;}
    .topnav.responsive .icon {
      position: absolute;
      right: 0;
      top: 0;
    }.topnav.responsive a {
      float: none;
      display: block;
      text-align: left;
    }
  }.flex-container {
    display: flex;
    flex-direction: row;
    text-align: justify;
  }
  .flex-container-gallery {
    display: flex;
    flex-direction: row;
    text-align: center;
  }
  
  .first {
    background-color: #fdfdfd;
    padding: 10px;
    flex: 21%;
  }
  .event {
    background-color: #fdfdfd;
    padding: 10px;
    flex: 88%;
  }
  .threeCol {
    background-color: #f8e8dd;
    padding: 10px;
    flex: 22%;
  }
  .twoCol {
    background-color: #fdfdfd;
    padding: 10px;
    flex: 44%;
  }
  .twoCol2 {
    background-color: rgb(248, 242, 242);
    padding: 10px;
    flex: 44%;
  }
  .second {
    background-color: rgb(248, 242, 242);
    padding: 10px;
    flex: 21%;
  }
  .right {
    background-color: #f3c23c;
    padding: 15px;
    flex: 12%;
  }
  .left {
    background-color: #ffd000;
    padding: 10px;
    flex: 70%;
  }.thermo {
    background-color: #e9e9e6;
    padding: 5px;
    flex: 12%;
  }.gallery {
    background-color:rgb(248, 242, 242);
    padding: 0px;
    flex: 10%;
  }
  
  /* Responsive layout - makes a one column-layout instead of two-column layout */
  @media (max-width: 600px) {
    .flex-container {
    flex-direction: column;
    }
  }