* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: deepskyblue;
}


#hamster {
    width: 300px;
    transition: all 5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.move-right {
    transform: translateX(300px);
}

#strawberry {
    width: 200px;
    transition: all 0.2s  ease-in;
}

#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;
  }
