Unit 3-Dodo-Scrap- Kinetic Type

https://editor.p5js.org/SuperiorCrane1/sketches/JjrzpZ-VG

var thunder;
function preload() {
  thunder = loadImage("lightning-thunderstorm-night-dark-sky-11569923713gzrmfm5ely.jpg")
}
function setup() {
  createCanvas(400, 400);
  noStroke()
}

function draw() {
  background(111, 126, 150);
  image(thunder,0,0,400,400)
   textSize(75)
    textAlign(CENTER,CENTER)
    textLeading(100)
    textFont("Viner Hand ITC")
  
  if(keyIsPressed) {
    fill(0, 38, 112)
    stroke(120,194,255)
    strokeWeight(3)
    textSize(90)
    textAlign(CENTER,CENTER)
    textLeading(80)
    textFont("Viner Hand ITC")
    text("I found a light", 10, 180, 400)
    text("inside me", 10, 360, 400)
    
    fill(255);
    textSize(80);
    text("The Storm", 200, 65);
    
  }
  
  else {
    noStroke()
    fill(89, 202, 217)
    textSize(50)
    textFont("Fjalla One")
    text("Zaú oe fru", 60,50,300)
    
    fill(89, 202, 217)
    textSize(80)
    textFont("Dancing script")
    text("iknimaya", 10,120,400)
    
    textAlign(RIGHT)
    textLeading(60)
    fill(120, 194, 255)
    textSize(40)
    textFont("fjalla one")
    text("nìftxavang\nting", 180, 220)
    
    textAlign(LEFT)
    textLeading(20)
    fill(199, 219, 255)
    textSize(30)
    textFont("dancing script")
    text("mikyun,\nting nari", 210, 195)
    
    fill(199, 219, 255)
    textSize(38)
    textFont("dancing script")
    text("Tompayä kato,", 210, 250)
    
    fill(11, 5, 173)
    textSize(50)
    textFont("fjalla one")
    text("tsawkeyä kato", 60, 325)
    
    fill(5, 0, 163)
    textSize(35)
    textStyle(BOLD)
    textFont("Staatliches")
    text("Sì 'ekong te'lanä oeru teya si", 10, 375)
    
    fill(191, 189, 255)
    textStyle(NORMAL)
    textSize(50)
    textFont("Staatliches")
    text("The Storm", 610, 30)
    
    fill(84, 118, 232)
    rect(190, 170, 5, 100)
  }
}