*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: aqua;
}
#fries{
    width: 400px;
    transition:all 0.3s ease-in;
}
#hamburger{
    width: 400px;
    transition:all 0.3s ease-in;
}
#pencil{
    width: 400px;
    height: 700px;
    transition:all 0.3s ease-in;
}
#person{
    width: 400px;
    transition: all 0.3s ease-in-out;

}
.move-right{
    transform: translateX(300px);
}
.move-down{
    transform: translateY(300px);
}
 #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;
  }
  