html, body {
  height: auto;
  text-align: center;
  font-family: helvetica, arial, sans-serif;
  background: #9370DB;
  padding: 0px;
  margin: 0px;
    border: 5px solid #9370DB;
}

h1 {
  font-size: 5vmax;
  line-height: normal;
  font-weight: bold;
  color: #000;
}
.button {
  width: 200px;
  height: 48px;
  border-radius: 4px;
  background-color: #33B3F0;
  border: 0px;
  font-size: 1em;
  font-weight: bold;
  color: white;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
  -webkit-transition-duration: 0.4s; /* Safari */
transition-duration: 0.4s;
cursor: pointer;
}

.button:hover {
  background-color: #FF8CE8;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(2px);
}

.button:active {
  background-color: #FF8CE8;
  -webkit-box-shadow: inset 3px 3px 10px #E07BDD;
  -moz-box-shadow:    inset 3px 3px 10px #E07BDD;
  box-shadow:         inset 3px 3px 10px #E07BDD;
  }

button:focus {outline:0;}

/*
CTA
dark blue #299FDA
#FF8CE8;
#E07BCC;

.bgimg {
  background-image: url('https://i.imgur.com/FtexaXr.jpg');
  min-height: 100%;
  background-position: center;
  background-size: cover;
}

*/

.bgimg {
  background-color: white;
  height: 100%;
  background-position: center;
  background-size: cover;
  padding: 0px;
  margin: 0px;
}

.animate {animation:opac 0.8s}
@keyframes opac{from{opacity:0} to{opacity:1}}


/*1
.container {
  position: relative;
}

.wrapper {
  position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
*/

.container {

  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  background-image:
    radial-gradient(#FEE9FF 12%, transparent 0),
    radial-gradient(#FEE9FF 12%, transparent 0);
  background-size: 10px 10px;
  background-position: 0 0, 80px 80px;
  padding: 0px;
  margin: 0px;
}


.wrapper-names {
  margin-bottom: 30px;
  font-weight: normal;
  font-size: 2.5vmax;
}

.footer {
  position: absolute;
    bottom: 12px;
    font-size: 10px;
    color: #C3C3C3;
}


#imageDisplay {
  display: inline;
}

#colorDisplay {
  display: inline;
}



$buttonBackground: #2c3e50;
$buttonColor: rgba(255,255,255,1);

.sparkley {

  background: lighten( $buttonBackground , 10% );
  color: $buttonColor;
  border: none;

  padding: 16px 36px;
  font-weight: normal;

  border-radius: 3px;
  transition: all 0.25s ease;

  box-shadow: 0 38px 32px -23px black;
  margin: 0 1em 1em;

  &:hover {

    background: $buttonBackground;
    color: transparentize( $buttonColor,0.8 );

  }


}
