/*
 *  css/main.css
 */

body {
  /* No margins */
  margin: 0 !important;
  padding: 0 !important;
  text-align: center;
  /* Paper Color */
  background-color: #F3ECE2;
} 

div#toolbar {
  background-color: blue;
}

div#name {
  font-size: 36px;
  width: 640px;
  height: 56px;
  margin: auto;
  font-family: cursive;
}

div#link {
  color: gray;
  font-size: 20px;
  width: 640px;
  height: 48px;	
  margin: auto;
  font-family: cursive;
  cursor: pointer;
}
 
div.shell {
  background-color: black;
  width: 640px;
  height: 480px;
  margin: auto;
  text-align: left;
  color: white;
  font-family: monospace;
  font-size: 16px;
  font-weight: bold;
  overflow-y: auto;
}

input.shell {
  background-color: black;
  border: none;
  color: white;
  font-family: sans-serif;
  font-size:16px;
  font-weight: bold;
  font-family: monospace;
  width: 360px;
}

div.footer {
  width: 640px;
  text-align: left;
  margin: auto;
}

a {
  color: gray;
  text-decoration: none;
}

/* Remove focus, specifically for text box from Chrome */
textarea:focus, input:focus{
  outline: none;
}