
* {
  margin: 0;
  padding: 0;
}

/* all styling below unique to log */

/* Header */
header {
  background-color: #fff;
  border-bottom: 1px solid #E6EAEA;
  height: 68px;
  top: 0;
  width: 100%
}

#header-logo {
  border-right: 1px solid #E6EAEA;
  height: 68px;
  display: inline-block;
  vertical-align: middle;
  padding-left: 8px;
  padding-right: 8px;
}

nav {
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  vertical-align: middle;
  float: right;
  height: 68px;
}

.nav-list {
  width: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
  display: inline-block;
  text-align: center;
  line-height: 68px;
}

#menu-icon {
  display: none;
}

#mynav-item3 {
  box-sizing: border-box;
  border-bottom: 2px solid #63ddfe;
  height: 68px;

}


@media screen and (max-width: 685px) {
  nav {
    float: none;
    width: 100%;
    }
  ul {
    box-sizing: border-box;
    border-top: 1px solid #E6EAEA;
    position: absolute;
    z-index: 999;
    }
  li{
    width: 100%;
    padding-top: 10px;
    padding-bottom: 9px;
    box-sizing: border-box;
    border-bottom: 1px solid #E6EAEA;
    background-color: white;
    font-size: 1.5em;
    }
  .nav-list  {
    display: none;
    }
  .menu-button {
    padding-left: 120px;
    padding-right: 120px;
    padding-top: 10px;
    padding-bottom: 10px;
    }
  #menu-icon {
    display: inline-block;
    color: black;
    font-size: 1.5em;
    position: absolute;
    right: 25px;
    top: 22px;
    }
  #menu-icon:hover {
      color: #63ddfe;
    }
  #mynav-item3 {
    box-sizing: border-box;
    border-bottom: 1px solid #E6EAEA;
    height: 36px;
  }
}

/* None of the CSS below is activated when I click on hamburger menu*/

@media screen and (max-width: 685px) {
    .navbar.responsive {
      margin-left: auto;
      margin-right: auto;
      vertical-align: middle;
      height: 68px;
      display: block;
    }
    .nav-list.responsive {
      box-sizing: border-box;
      border-top: 1px solid #E6EAEA;
    }
  }

.nav-item {
  box-sizing: border-box;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  font-weight: lighter;
  font-size: .9em;
  font-family: 'Poppins', sans-serif;
}

@media screen and (max-width: 850px) {
      .nav-item{
            font-size: .8em;
        }
}

@media screen and (max-width: 755px) {
      .nav-item{
            font-size: .7em;
        }
    }

nav a {
  text-decoration: none;
  color: #333;
  padding: 1.5em;
}

nav a:hover {
  color: #63ddfe;
  text-decoration: underline;
}

/* Main Body */

#box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  height: 100vh;
}

.square {
  width: 50%;
  height: 50%;
  display: flex;
  justify-content: center;
}

a {
  position: relative;
  overflow: hidden;
}

h3 {
  color: #63ddfe;
  font-size: 2.5em;
  font-family: poppins, open-sans;
  font-style: italic;
  letter-spacing: -1px;
  background: rgba(0, 0, 0, 0.7);
  padding: 10px;
}

#title1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.photos{
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 1010px) {
  .square {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: black;
  }
}

@media screen and (max-width: 500px) {

  .photos {
    object-fit: cover;
    height: 400px;
    width: 500px;
  }
}


/* Footer Licensing, links etc... */

footer {
  background-color: #333;
  opacity: .7;
  height: 35px;
  position: fixed;
  bottom: 0;
  width: 100%;
}

#copyright {
  color: #fff;
  line-height: normal;
  padding: 0px;
  font-size: .5em;
  width: 120px;
  font-family: poppins, sans-serif;
}

.footer-social{
  display: flex;
  justify-content: center;
}

.footer-list{
  list-style: none;
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 33px;
  padding: 0px;
  font-size: .8em;
  border: none;
  background-color: inherit;
}

.footer-icons {
  color: #fff;
  font-size: 1em;
  text-decoration: none;
  display: inline-block;
}
.fa-instagram {
    padding:10px 10px;
    -o-transition:.5s;
    -ms-transition:.5s;
    -moz-transition:.5s;
    -webkit-transition:.5s;
    transition: .5s;

}
.fa-instagram:hover {
    background-color: #8a3ab9;
}
.fa-linkedin-in {
    padding: 10px 10px;
    -o-transition:.5s;
    -ms-transition:.5s;
    -moz-transition:.5s;
    -webkit-transition:.5s;
    transition: .5s;

}
.fa-linkedin-in:hover {
    background-color: #0073a4;
}

@media screen and (max-width: 685px) {
  footer{
    display: none;
  }
}

/* :) */
