body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

/*
#container {
  height: 100%;
  width: 100%;

}*/
/*#spi1 {
  position: relative;
  z-index: 2;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: 50%;
  mix-blend-mode: multiply;
}
*/
.spicontainer {
    display: flex;
    justify-content: center;
    width: 100%
}

.spicture {
    background-image: url(watermark.png);
    background-repeat: repeat;
    background-size: 40% 40%;
}

.sailpanel {
    fill: white;
    stroke: black;
    stroke-width: 2;
    opacity: 90%;
}

.colors {
    display: flex;
    /* position: fixed; */
    /* bottom: 2em;
  right: 2em;
  z-index: 3;*/
}

.colorswatch {
    height: 36px;
    width: 36px;
    margin-left: 0.5em;
    border-radius: 18px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    border: 2px solid #aaa;
    cursor: pointer;
}

.button {
    background-color: white;
    padding: 8px 16px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.4s;
}

.button:hover {
    background-color: #f44336;
    /* Green */
    color: white;
}