* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.reveal {
  position: relative;
  opacity: 0;
}
.reveal.active {
  opacity: 1;
}
.active.fade-bottom {
  animation: fade-bottom 1s ease-in;
}
.active.fade-left {
  animation: fade-left 1s ease-in;
}
.active.fade-right {
  animation: fade-right 1s ease-in;
}
a {
  color: #fff;
}
@keyframes fade-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-left {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-right {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
body {
  font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
}
a {
  text-decoration: none;
}
.navbar-brand {
  width: 170px;
}
.left {
  background-color: #423175;
  height: 100vh;
}
.right {
  background-color: #9ccdca;
  height: 100vh;
  color: #9ccdca !important;
}
.left, .right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.link-left {
  color: #423175 !important;
}
.link-right {
  color: #9ccdca !important;
}
.link {
  background-color: #fff;
  border: 1px solid #fff;
  padding: 40px;
  border-radius: 10px;
}
.link:hover {
  background-color: transparent;
  color: #fff !important;
}
footer {
  padding: 40px 0px 0px;
}
.footer-info {
  color: #423175 !important;
}
.footer-info:hover {
  color: #9ccdca !important;
}