body {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  font-family: Verdana, sans-serif;
}

.canvas {
  width: 100vw;
  height: 100vh;
  background-color: #3B6EA5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.taskbar {
  cursor: default;
  background-color: silver;
  margin: 16px 0 0 0;
  padding: 0 8px;
  position: absolute;
  bottom: 0;
  border-top: 2px outset #fff;
  z-index: 228;
  width: 100%;
  height: 30px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
} 

.start {
    cursor: default;
    display: inline-block;
    border: 1px outset #fff;
    padding: 1px 4px;
    box-shadow: 1px 1px #000;
    color: #000;
    font-weight: bold;
    margin-bottom: 2px;
    font-size: 14px;
    line-height: 1;
}

.start::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url(images/orange.png);
    background-size: 100%;
    background-repeat: no-repeat;
    vertical-align: middle;
}

.time {
  font-size: 14px;
  margin-left: auto;
  border: 1px solid #808080;
  padding: 2px 6px;
}

.rand-gif {
  transition: top 1s ease-in-out, left 1s ease-in-out;
  border: 2px outset white;
  background-color: silver;
}


.test {
  width: 1400px;
  height: 400px;
  background-color: rgba(255, 0, 0, 0.5);
}