/* The Overlay (background) */
.overlay {
    /* Height & width depends on how you want to reveal the overlay (see JS below) */   
    height: 0;
    width: 100%;
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 75px;
    background-color: rgb(255, 255, 255); /* Black fallback color */
    overflow-x: hidden; /* Disable horizontal scroll */
    transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
  }
  
  /* Position the content inside the overlay */
  .overlay-content {
    position: relative;
    width: 100%; /* 100% width */
    text-align: left; /* Centered text/links */
}
  
  /* The navigation links inside the overlay */
  .overlay a {
    /*padding: 8px;*/
    margin-left: 15px;
    text-decoration: none;
    font-family: 'Poiret One';
    font-size: 36px;
    color: #818181;
    display: block; /* Display block instead of inline */
    transition: 0.3s; /* Transition effects on hover (color) */
  }

  a.indented{
      margin-left: 30px;
      margin-top: 5px;
  }

  .arrow{
      font-size: 15px;
      margin-bottom: 7px;
  }

  .socialmedialink{
    margin-top: 30px;
    font-family: 'Poiret One';
    font-size: 36px;
    color: #818181;
  }

  .socialmedia{
    font-size: 36px;
    padding-bottom: 7px;
    color: #818181;
  }
  
  /* When the height of the screen is less than 450 pixels, change the font-size of the links and position the close button again, so they don't overlap */
  @media screen and (max-height: 450px) {
    .overlay a {font-size: 20px}
    .overlay .closebtn {
      font-size: 40px;
      top: 15px;
      right: 35px;
    }
  }

  .logo{
    font-family: 'Poiret One';
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #logotext{
    font-size: 40px;
    margin-bottom: 5px;
  }

  .navbar{
    position: fixed;
    background: #fff;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}