*,
*:before,
*:after {
  box-sizing: border-box;
}
body {
  padding: 0;
  margin: 0;
  font-size: 1.125rem;
}

a {
  text-decoration: none;
}

#header-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  height: 100vh;
  background-color: #818181;
  overflow: hidden;
}

#header-wrapper img {
  height: 100%;
  user-select: none; /* supported by Chrome and Opera */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
}

#header-left {
  flex: 1 0 50%;
  text-align: center;
}

.header-h1 {
  font-family: "Roboto", sans-serif;
  font-size: calc(5vw + 5rem);
  color: white;
}

header .social a,
footer .social a {
  padding: 10px;
}

header .social img,
footer .social img {
  width: 30px;
  /* padding: 5px; */
  /* height: 20px; */
}

#content {
  padding: 0 10px;
  margin-top: 10px;
}

.columns {
  column-count: 4;
  column-gap: 3px;
}

.columns img {
  min-width: 50px;
  min-height: 50px;
  max-width: 100%;
  visibility: hidden;
}

.columns img:hover {
  opacity: 0.5;
}

#lightbox {
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.9);
}

#lightbox-content {
  position: relative;
  width: 90%;
  height: 90%;
  overflow: hidden;
  background-image: url("../images/photographs/India2015-142_Edit1.jpg");
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
}

.lightbox-close::after,
.form-close::after {
  font-family: "Roboto", sans-serif;
  font-size: 3vw;
  color: white;
  content: "X";
  position: absolute;
  top: 0;
  right: 30px;
}

footer {
  display: flex;
  flex-direction: column;
  /* flex-wrap: wrap; */
  background-color: #818181;
  color: white;
  padding: 50px;
  margin-top: 20px;
  align-items: center;
  justify-content: space-evenly;
}

footer > div:first-child {
  padding-bottom: 10px;
}

.icon-rectangle,
.icon-circle,
.icon-path {
  stroke: black;
  fill: white;
  stroke-width: 10px;
}

.form-container {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  text-align: center;
  background-color: #818181;
}

.form-wrapper {
  position: relative;
  margin: 0 auto;
  max-width: 500px;
  padding: 20px;
  background-color: #818181;
}

.form-wrapper h4 {
  font-family: "Roboto", sans-serif;
  color: white;
  text-transform: uppercase;
}

textArea {
  width: 100%;
}
input[type="text"],
input[type="email"] {
  width: 100%;
  padding: 5px 2px;
  margin-bottom: 10px;
}

input[type="submit"] {
  width: 100%;
}

@media screen and (max-width: 800px) {
  .columns {
    column-count: 2;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .columns {
    column-count: 1;
  }
}
