/* 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');
* { box-sizing: border-box; }

body {
  background-color: white;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  margin: 2px;
  color: #444;
  text-align:center;
}

#wrapper{
  position: relative;
  width: 100%;
  max-width; 310px;
  margin: 0 auto;
  background-color: white;
  height: 240px;
}

#biggreen{ 
  position: absolute;
  right: 0px;
  top: 0px;
  background-color: rgb(11, 95, 63); 
  width: 160px;
  height: 240px;
}

#smallshell{ 
  position: absolute;
  right: 60px;
  top: 75px;
  background-color: rgb( 212,200 ,191);
  width: 95px;
  height: 90px;
}

#bigshell{ 
  position: absolute;
  right: 155px;
  top: 0px;
  background-color: rgb( 212,200 ,191);
  width: 150px;
  height: 240px;
}

#smallgreen{ 
  position: absolute;
  right: 155px;
  top: 75px;
  background-color: rgb(11, 95, 63); 
  width: 95px;
  height: 90px;
}



