html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.main-container {
  min-height: 100vh;
}

.wrapper {
  padding: 0;
  margin: 0;
}

.main {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 1;
  padding: 0;
}

.bg-image {
  width: calc(100% + 60px);
  height: calc(100% + 60px);
  margin: -30px;
  position: absolute;
  z-index: 0;
  background-image: url("../img/bg-baby.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  -webkit-filter: blur(8px);
  -moz-filter: blur(8px);
  -o-filter: blur(8px);
  -ms-filter: blur(8px);
  filter: blur(8px);
}

.footer-container {
  min-height: 123px;
  background: grey;
  background: rgba(255, 255, 255, 0.5);
  border-top: solid 20px rgba(255, 255, 255, 0.5);
  position: relative;
  z-index: 1;
  display: none;
}

.main article {
  width: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  margin: 0 auto;
  padding: 25px;
  color: white;
  position: relative;
  z-index: 1;
}

.main article h2 {
  font-weight: 100;
  text-transform: uppercase;
}

.main article p {
  font-weight: 100;
}

.logo {
  width: 290px;
  height: 91px;
  background-image: url("../img/keleya_logo_text_white.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  margin: 20px auto 40px;
}

a {
  color: #ffffff;
  width: auto;
  background: #844B98;
  padding: 11px 10px 10px;
  margin: 10px;
  display: inline-block;
  line-height: 1;
  text-decoration: none;
  border-radius: 5px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  transition: all 200ms ease;
}

a:hover {
  box-shadow: none;
}

#counter {
  color: red;
  font-size: 20px;
}
