/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

@font-face{
  font-family:"Pixelated MS Sans Serif";
  font-style: normal;
  font-weight: 400;
  src:url(/ms-sans-serif.woff2) format("woff2");
}

button {
  all: unset;
  cursor: pointer;
}

.separator{
  width: 2px;
  height: auto;
  padding: 3px 0px 3px 5px;
  margin-left: 2px;
  box-shadow: inset -1px -1px gray, inset 1px 1px #dfdfdf,inset -2px -2px grey,inset 2px 2px #fff;
}

.taskbar {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color:gainsboro;
  border-style: solid;
  border: 1px outset white;
  vertical-align: middle;
  display: inline-block;
  border-bottom: 0px;
  border-left: 0px;
  border-right: 0px;
}

.startbutton{
  margin-top: 2px;
  margin-left: 2px;
}

.window_ie {
  background-color: silver;
  box-shadow: inset -1px -1px #0a0a0a,inset 1px 1px #dfdfdf,inset -2px -2px grey,inset 2px 2px #fff;
  padding: 3px; 
  font-family: 'Pixelated MS Sans Serif';
}

.titlebar {
  width: 100%;
  height: 20px;
  align-items: center;
  color: white;
  background: linear-gradient(90deg,navy,#1084d0);;
  display: flex;
  justify-content: space-between;
  cursor: move;
}

.title {
  margin-left: 5px;
}

.ie_windowcontent {
  background-color: white;
  margin: 2px;
  overflow: auto;
  overflow: hidden;
  scrollbar-width: none;
  box-shadow: inset -1px -1px #fff,inset 1px 1px #0a0a0a,inset -2px -2px #fff,inset 2px 2px #0a0a0a;
}

.ie_toolbar {
  margin-top: 5px;
  padding: 5px 0px 5px 0px;
  background-color: silver;
  border: 2px solid white;
}

.ie_toolbar_2 {
  padding: 35px 0px 5px 0px;
}

.ie_tb_text{
  padding: 0px 10px 0px 10px;
}

.ie_tb2_text{
  padding: 0px 25px 0px 25px;
}

.ie_adressbar{
  margin: 5px 0px 5px 0px;
}
.ie_ab_adress_t{
  padding-left: 15px;
}

.ie_ab_adressbar{
  width: 100px;
  background-color: white;
  border: none;
  border-top: 1px solid white;
  padding: 2px 550px 2px 0px;
  box-shadow: inset -1px -1px #fff,inset 1px 1px #0a0a0a,inset -2px -2px #fff,inset 2px 2px #0a0a0a;
}


body {
  background-color: darkcyan;
  font-size: 12px;
  color: black;
  text-rendering: optimizeLegibility;
}

