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

.bg-dark {
    background-color: black !important;
}


body {
    background-color:#401a4c;
}

/* Description */
.section-slantedcard {
  position: relative;
  margin: 150px 0 100px 0;
}
.section-slantedcard-card {
  padding: 60px 90px 35px;
  box-shadow: 0 2px 4px 0 rgba(136, 144, 195, 0.2),
    0 5px 15px 0 rgba(37, 44, 97, 0.15);
  background-color: white;
}

.section-slantedcard-bottom {
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  transform: rotate(-2deg);
  box-shadow: 0 2px 4px 0 rgba(136, 144, 195, 0.2),
    0 5px 15px 0 rgba(37, 44, 97, 0.15);
  background-color: white;
}

.section-slantedcard-top {
  position: relative;
  z-index: 10;
}

.content-slantedcard-text {
  line-height: 1.6;

  font-size: 17px;
  font-family: libre baskerville;
}

/* Sig Card */

.flip {
  position: relative;
}
.flip > .front,
.flip > .back {
  display: block;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-duration: 1.5s;
  transition-property: transform, opacity;
}
.flip > .front {
  transform: rotateY(0deg);
  border-radius: 40%;
}
.flip > .back {
  position: absolute;
  opacity: 0;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 180%;
  transform: rotateY(-180deg);
}
.flip:hover > .front {
  transform: rotateY(180deg);
}
.flip:hover > .back {
  opacity: 1;
  transform: rotateY(0deg);
}
.flip.flip-vertical > .back {
  transform: rotateX(-180deg);
}
.flip.flip-vertical:hover > .front {
  transform: rotateX(180deg);
}
.flip.flip-vertical:hover > .back {
  transform: rotateX(0deg);
}

.flip {
  position: relative;
  display: inline-block;
  margin-right: 0px;
  margin-bottom: 1em;
  width: 450px;
}
.flip > .front,
.flip > .back {
  display: block;
  background-position: center !important;
  height: 350px;
  padding: 2em 4em;
  background: #313131;
  border-radius: 15px;
  color: white;
  width: inherit;
  background-size: cover !important;

  -webkit-box-shadow: 3px -1px 31px 1px rgba(87, 99, 233, 1);
  -moz-box-shadow: 3px -1px 31px 1px rgba(87, 99, 233, 1);
  box-shadow: 4px 15px 60px -15px rgba(87, 99, 233, 1);
}

.flip > .front p,
.flip > .back p {
  font-size: 0.9125rem;
  line-height: 160%;
  color: #999;
  font-family: "libre baskerville";
  font-size: 18px;
}



.text-shadow {
  text-shadow: 1px 1px rgba(0, 0, 0, 0.04), 2px 2px rgba(0, 0, 0, 0.04),
    3px 3px rgba(0, 0, 0, 0.04), 4px 4px rgba(0, 0, 0, 0.04),
    0.125rem 0.125rem rgba(0, 0, 0, 0.04), 6px 6px rgba(0, 0, 0, 0.04),
    7px 7px rgba(0, 0, 0, 0.04), 8px 8px rgba(0, 0, 0, 0.04),
    9px 9px rgba(0, 0, 0, 0.04), 0.3125rem 0.3125rem rgba(0, 0, 0, 0.04),
    11px 11px rgba(0, 0, 0, 0.04), 12px 12px rgba(0, 0, 0, 0.04),
    13px 13px rgba(0, 0, 0, 0.04), 14px 14px rgba(0, 0, 0, 0.04),
    0.625rem 0.625rem rgba(0, 0, 0, 0.04), 16px 16px rgba(0, 0, 0, 0.04),
    17px 17px rgba(0, 0, 0, 0.04), 18px 18px rgba(0, 0, 0, 0.04),
    19px 19px rgba(0, 0, 0, 0.04), 1.25rem 1.25rem rgba(0, 0, 0, 0.04);
}

.sig-heading {
    font-family:Lemonada;
}