* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  width: 100%;
  min-height: 95vh;
  background-color:#29235C;
  background-image: linear-gradient(left , #29235C 0%, #14152E 100%);
  transition: all 1s ease-in;
  justify-content: center;
  align-items: center;
}

body.is-inverted {
  background-color:#eee;
  background-image: linear-gradient(left , #FFFFFF 0%, #DDDDDD 100%);
}

.logo {
  width: 423px;
  height: 237px;
  font-size: 0;
  background: url(../images/spkr-logo.png) no-repeat;
}

.is-inverted .logo {
  background-image: url(../images/spkr-logo-2.png);
  background-repeat: no-repeat;
}

.logo:hover {
  cursor: pointer;
}
