body {
    background: #be0e2e;
    font-family: consolas;
    color: white;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

@keyframes swayAnimation {
    0% {
      transform: translateX(-10px);
    } 
    50% {
      transform: translateX(50px);
    }
    100% {
      transform: translateX(-10px);
    }
}

.flowerImg {
    position: relative;
    z-index: 10;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    /* background: #be0e2e; */
    background-repeat: no-repeat;
    background-size: auto auto;
    background-position: center center;
    animation: swayAnimation 5s infinite;
}

#theSvg {
    width: 110vmin;
    display: block;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    /* z-index: 1; */
}

text {
    fill: white;
    font-family: consolas;
    font-size: 9px;
}

p {
    position: absolute;
    z-index: 2
}

label {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    opacity: .8
}
