*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: darkseagreen;
}
#domo {
    width: 200px;
    /* transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53); */
    transition: all 0.5s ease-in;
}
#domi {
    width: 210px;
}
#flower {
    width: 100px;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
}
.move-right {
    translate: 300px 0;
    /* rotate: ; */
}

#start, #overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
    color: white;
    font-size: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
}

#start {
   visibility: visible;
}

#timer {
  position: fixed;
  top: 20px;
  right: 15px
}