body, .body-container-wrapper, h1, h2, h3, h4, h5, h6 {
    background-color: unset!important;
    color: unset!important;
}
html, body {
    padding: 0;
    margin: 0;
    background-color: unset;
}
.the-party {
    font-family: sans-serif;
    font-size: 16px;
    text-align: center;
}

.night_mode {
    background-color: #000;
    color: #fff;
}

.day_mode {
    background-color: bisque;
    color: tomato;
}


.the-party.parrot_mode {
    background-image: url('//cdn2.hubspot.net/hubfs/3307706/parrot.gif');
    background-repeat: repeat;
    color: #fff;
    background-color: bisque;
}


.richest_text {
    margin: 2em 25em;
}

.button-banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 350px;
    background-color: blanchedAlmond;
    background-repeat: repeat;
    background-blend-mode: color-burn;
}

#disco {
    flex: 1;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    background: #33475B;
    border: 1px solid #33475B;
    border-bottom: 9px solid #2a3a49;
}

#disco, .bg{
    max-width: 50%;
    margin: 0 auto;
}

button.zero {
    display: block;
    -webkit-appearance: none;
    -webkit-outline: none;
    user-select: none;
    cursor: pointer;
}

button.zero:focus {
    outline: none;
}

button.zero:active {
    border-bottom: 0;
    border-top: 10px solid rgba(0,0,0,0.00);
}

button.huge {
    font-size: 72px;
}

form.convert {
    width: 80%;
    margin: 0 auto;
    font-size: 3em;
}

form.convert fieldset, form.convert input {
    border: none;
    outline: none;
    -webkit-appearance: none;
    text-align: center;
}

form.convert input {
    font-style: italic;
    width: 45%;
    border-bottom: 5px solid #000;
    margin: 15px;
    background: transparent;
}

.bg {
    user-select: none;
    font-size: 5em;
    font-weight: bold;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    cursor: pointer;
    background-size: cover;
}

.bg:before {
    background-image: inherit;
    position: absolute;
    z-index: -2;
    top: 0;
    right: 0;
    content: '';
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background: #fff;
}

.bg:after {
    top: .25em;
    right: .1em;
    bottom: .25em;
    left: .1em;
    position: absolute;
    z-index: -1;
    content: '';
    background-color: #fff;
}

.bg:hover:after {
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: rgba(214, 69, 52, 0.7);
    transition: all .2s ease-out;
}

.bg:hover {
    transition: all .4s ease-out;
    -webkit-background-clip: none;
    background-image: none!important;
    -webkit-text-fill-color: #fff;

}

.bangLeft:hover {
    animation: bounceInNoDropInLeft .5s 1;
    -webkit-animation: bounceInNoDropInLeft .5s 1;
    -o-animation: bounceInNoDropInLeft .5s 1;
    -moz-animation: bounceInNoDropInLeft .5s 1;
}

.bangRight:hover {
    animation: bounceInNoDropInRight .5s 1;
    -webkit-animation: bounceInNoDropInRight .5s 1;
    -o-animation: bounceInNoDropInRight .5s 1;
    -moz-animation: bounceInNoDropInRight .5s 1;
}

@keyframes bounceInNoDropInLeft {
  0.00% {
    -ms-transform: rotate(0deg); 
    -webkit-transform: rotate(0deg); 
    transform: rotate(0deg);
    
  }

  25% {
    -ms-transform: rotate(7deg); 
    -webkit-transform: rotate(7deg); 
    transform: rotate(7deg);
    transform: scale(1.2,1.2);
    box-shadow: 10px 10px 100px orange;
    
  }

  75% {
    -ms-transform: rotate(-7deg); 
    -webkit-transform: rotate(-7deg); 
    transform: rotate(-7deg);
    
  }

  100% {
    -ms-transform: rotate(0deg); 
    -webkit-transform: rotate(0deg); 
    transform: rotate(0deg);
    transform: scale(1,1);
    box-shadow: none;
  }
}

@keyframes bounceInNoDropInRight {
  0.00% {
    -ms-transform: rotate(0deg); 
    -webkit-transform: rotate(0deg); 
    transform: rotate(0deg);
    
  }

  25% {
    -ms-transform: rotate(-7deg); 
    -webkit-transform: rotate(-7deg); 
    transform: rotate(-7deg);
    transform: scale(1.2,1.2);
    box-shadow: 10px 10px 100px orange;
    
  }

  75% {
    -ms-transform: rotate(7deg); 
    -webkit-transform: rotate(7deg); 
    transform: rotate(7deg);
    
  }

  100% {
    -ms-transform: rotate(0deg); 
    -webkit-transform: rotate(0deg); 
    transform: rotate(0deg);
    transform: scale(1,1);
    box-shadow: none;
  }
}

