body {
    font-family: "Lato", serif;
    font-size: 1.2em;
    line-height: 1.4;
    background: #61B2A0;
    overflow-x: hidden;
}
td {
    text-align:center;
    vertical-align:top;
}
img {
    margin: 5px;
    transition: all 2s;
}


/*
** Container for logo
*/

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/*
** Allows image to popoput when clicked on
*/

.image-popout {
    z-index: 9999;
    display: inline-block;
}
.image-popout .l1 {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.5);
}
.image-popout .l1 img {
    position: fixed;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.image-popout input[type="checkbox"] {
        display: none;
}
.image-popout input[type="checkbox"]:checked ~ .l1 {
        display: block;
}

/*
** Hamburger Side-navigation
*/

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 20px;
  text-align:center;
}

.sidenav a {
  padding: 6px 6px 6px 24px;
  text-decoration: none;
  font-size: 15px;
  color: #61B2A0;
  display: block;
  transition: 0.3s;

}

.sidenav a:hover{
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

