* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  height: 100%;
}
*:focus {
  outline: none;
}
body {
  margin: 0;
  background-color: white;
  font-family: 'Montserrat', sans-serif;
  height: 100vh;
}
.container {
  width: 100%;
  text-align: center;
  position: relative;
}
.logo {
  position: absolute;
  top: 1vh;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 10vh;
}
.photo {
  position: absolute;
  top: 12vh;
  left: 0;
  right: 0;
  height: 60vh;
  margin: 0 auto;
  -webkit-box-shadow: 0px 0px 10vh 0px rgba(0, 0, 0, 0.31);
  -moz-box-shadow: 0px 0px 10vh 0px rgba(0, 0, 0, 0.31);
  box-shadow: 0px 0px 10vh 0px rgba(0, 0, 0, 0.31);
  z-index: 0;
}
.buttons {
  position: absolute;
  top: 74vh;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 20;
}
.button {
  display: block;
  font-size: 25px;
  color: #eb3242;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 0.5vh;
}
.button img {
  height: 10vh;
}
#at-image-sharing-mobile-icons {
  display: none !important;
}
.popup {
  position: fixed;
  margin: auto;
  top: 3vh;
  bottom: 3vh;
  left: 3vh;
  right: 3vh;
  z-index: 100000;
  background-color: #FFF;
  -webkit-box-shadow: 0px 0px 10vh 0px rgba(0, 0, 0, 0.31);
  -moz-box-shadow: 0px 0px 10vh 0px rgba(0, 0, 0, 0.31);
  box-shadow: 0px 0px 10vh 0px rgba(0, 0, 0, 0.31);
  max-width: 800px;
}
.popup .logo-maxi {
  margin-top: 10vh;
  height: 10vh;
  margin-bottom: 4vh;
}
.popup h2 {
  text-transform: uppercase;
  color: blue;
  font-weight: 800;
  display: block;
  max-width: 700px;
  padding: 0 50px;
  margin: 0 auto 5vh;
  font-size: 2.5vh;
}
.popup input[type=text] {
  width: 80%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  font-weight: 700;
  border: solid 1px #000;
}
.popup .submit {
  width: 80%;
  margin: 3vh auto;
  background-color: #000;
  color: #FFF;
  font-weight: 700;
  font-size: 18px;
  padding: 12px 20px;
  cursor: pointer;
}
