@import url('https://fonts.googleapis.com/css?family=Schoolbell');

[draggable] {
  cursor: move;
}

.dragndrop {
  text-align: center;
  font-size: 1.25em;
  z-index: -1;
}

.parts-drawer {
  background-color: #eee;
  height: 23em;
  width: 200%;
}

/* Speech Bubbles */

body,
html,
div.board,
div#react-container {
    height: 100%;
    overflow: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Schoolbell', cursive;
    font-weight: 400;
    font-size: 1em;
    line-height: 1.2em;
    color: #fff;
    background-color: #6DA7F5;
} 

#outer {        
   display: inline;
}

h1 {
   text-align: center;
   font-size: 2.6em;
   font-weight: 400;
   line-height: 1.0em;
   color: #C49510;
}

h2 {
   font-family: 'Schoolbell', cursive;
   font-weight: bold;
   font-size: 1.6em;
}

h1 {
   text-shadow: 1px 1px 1px rgb(221, 222, 229);
   margin: 20px 0;
}

#h1-span {
   font-size: 0.7em; 
   text-shadow: 1px 1px 1px rgb(100, 100, 100);
}

#header h2 {
   text-align: center;
}

#lynda-link {
   font-family: 'Schoolbell', cursive;
   font-size: 0.9em;
   float: right;
   margin: -40px 40px 0 0;
}

div.board {
    background-color: 'brown';
    width: 100%;
    background: #fff;
}

div.note {
    height: auto;
    width: auto;
    max-width: 180px;
    margin: 2px 0;
    position: absolute;
  z-index: 100;
    cursor: -webkit-grab;
    overflow: hidden;
    padding: 1em 3em;
    
}

div.note:active {
    cursor: -webkit-grabbing;
}

div.note p {
    margin: 0;
    font-size: 16px;
    padding: 5px;
    font-family: 'Schoolbell', cursive;
    line-height: 1.1;
  color: #000;
}

div.note:hover > span {
    opacity: 1;
}

div.note > span {
    position: absolute;
    bottom: 2px;
    right: 2px;
    opacity: 0;
    transition: opacity .25s linear;
}

div.note button {
    margin: 2px;
}

div.note textarea {
    height: 75%;
    background: rgba(255, 255, 255, .5);
}

.board > button {
    position: fixed;
    top: 5em;
    right: 1em;
    font-size: 1em;
    padding: .8em .8em 1em .8em;
    border-radius: 100px;
    border: 0px solid;
    background-color: #75B1FE;
    color: #fff;
    font-family: 'Schoolbell', cursive;
}

img {width: 100px;}

img .bigger {transform: scale(2);}