print("Newschool card");
size(250, 250);
background(0, 0, 0);

println("Card back");
fill(255, 255, 255);
rect(10, 50, 230, 150);
noStroke();
println("Top red");
fill(255, 0, 0);
rect(10, 50, 230, 50);
noStroke();

println("new");
fill(255, 255, 255);
rect(15, 55, 50, 25);
noStroke();

println("card");
fill(255, 150, 0);
rect(65, 55, 50, 25);
noStroke();

println("CAMPUS ID");
fill(255, 255, 255);
rect(40, 85, 75, 10);
noStroke();

println("THE NEW SCHOOL");
fill(255, 255, 255);
rect(125, 55, 100, 20);
noStroke();

println("Bottom red");
fill(255, 0, 0);
rect(10, 185, 230, 20);
noStroke();
println("Portrait boarder");
fill(0, 0, 0);
rect(15, 105, 65, 75);

println("Portrait inside");
fill(255, 255, 255);
rect(17, 107, 61, 71);

println("First name");
fill(0, 0, 0);
rect(100, 115, 75, 15);
noStroke();

println("Last name");
fill(0, 0, 0);
rect(100, 135, 75, 15);
noStroke();

println("Id number");
fill(0, 0, 0);
rect(100, 155, 75, 15);
noStroke();

println("Student");
stroke(0, 0, 0, 150);
rectMode(CENTER);
rect(125, 195.5, 60, 15);

println("Top down line");
stroke(255, 255, 255);
line(120, 55, 120, 95);

save("Newschool Card.png");