canvas {
    display: block;
    border: 0;
    position: relative;
    z-index: 10;
	max-width: 100%;
}

.canvas-container {
    position: relative;
    width: 600px;
    height: auto;
	margin: 0 auto;
	max-width: 100%;
	
}

.text-stack {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 20;

}

.fade-text {
    font-family: sans-serif;
    font-size: 24px;
    color: #222;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 100ms ease, transform 100ms ease;
}

.fade-text.visible {
    opacity: 1;
    transform: translateY(0);
	transition: opacity 600ms ease, transform 600ms ease;
}

#circle_1,
#circle_2,
#circle_3 {
    width: 80px;
    height: 80px;
    position: absolute;
}

.step_blurb {
    position: absolute;
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: 200;
    line-height: 1.4;
    font-family: 'Source Sans 3', sans-serif;
}

.blurb_heading {
    font-size: 20px;
    font-weight: bold;
}

#circle_1 {
    top: 70px;
    left: 190px;
}

#blurb1 {
    top: 85px;
    left: 280px;
    width: 200px;
}

#circle_2 {
    top: 300px;
    left: 460px;
}

#blurb2 {
    top: 380px;
    left: 290px;
    width: 210px;
    font-weight: 400;
}

#circle_3 {
    top: 407px;
    left: 120px;
}

#blurb3 {
    top: 250px;
    left: 33px;
    width: 180px;
    font-weight: 400;
}