html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  color: #333;
  position: relative;
  background-color: rgba(142, 72, 97, 0.1);
  width: 100%;
  overflow: hidden;
}
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: stretch;
  justify-content: center;
  flex-wrap: nowrap;
  border: 1px solid red;
  height: 100%;
}
.v-center {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
a {
  color: #8e4861;
  text-decoration: none;
}
.logo {
  max-width: 420px;
  width: 100%;
  display: inlne-block;
  transition: transform .5s;
}
.logo:hover {
  -ms-transform: scale(1.2);
  /* IE 9 */
  -webkit-transform: scale(1.2);
  /* Safari 3-8 */
  transform: scale(1.2);
}
.text-center {
  text-align: center !important;
}
