04-03 start flask script

01

Fix 3 errors on the page

  1. video z-index wrong in step-float
  2. step-float step-txt off on mobile
  3. fix border in code-container and copy-code

Basic script

from flask import Flask
app = Flask(__name__)

@app.route('/')
def index():
    return 'Hey'

TBD i think its 
@app.route('/drinks')
def get_drinks():

TBD, continuing flask script, i think endpoints are the urls within @app.route('/')

02

TBD

TBD