/*
This is a Cascading Style Sheet (CSS).
It describes rules for styling your HTML markup.

To use this file, place the following <link> tag anywhere in the <head> of your HTML file, making sure that the filename after "href" matches the name of your file....

    <head>
        <link rel="stylesheet" href="style.css">
    </head>

Learn more about CSS at https://developer.mozilla.org/en-US/docs/Web/Guide/CSS

When you're done, you can delete all of this grey text, it's just a comment.
*/

/* Fonts from Google Fonts - more at https://fonts.google.com */
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700');
@import url('https://fonts.googleapis.com/css?family=Merriweather:400,700');

body {

  margin: 3vims;

}

#canvas{

  width:70vmin;
  height:96vmin;
  margin: 0 auto;
  position:relative;
  background-color:#e5d2c3;

}


#blue{

  width:40%;
  height:30%;
  margin: 0 auto;
  left:11%;
  top:20%;
  position:absolute;
  background-color:#6ea6d7;

}

#black{

  width:30%;
  height:22%;
  margin: 0 auto;
  left:59%;
  top:20%;
  position:absolute;
  background-color:#29282d;

}

#green{

  width:30%;
  height:22%;
  margin: 0 auto;
  left:11%;
  top:56%;
  position:absolute;
  background-color:#22ad5a;

}

#orange{

  width:40%;
  height:30%;
  margin: 0 auto;
  left:51%;
  top:50%;
  position:absolute;
  background-color:#f5783e;

}



