#background {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
}
body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  background-image: url("flight-driving-shoe.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
}
#taskbar {
  width: calc(100% - 20px);
  position: fixed;
  background-color: rgba(25, 25, 25, 0.75);
  bottom: 10px;
  left: 10px;
  height: 40px;
  border-radius: 40px;
  z-index: 2147483647;
}
#taskbar-content {
  display: flex;
  justify-content: space-between;
  height: 100%;
  align-items: center;
  padding: 0 5px;
}
#start {
  background-color: rgba(50, 50, 50, 0.5);
  color: white;
  width: 75px;
  height: 30px;
  border-radius: 30px;
  border-style: solid;
  border-color: rgba(65, 65, 65, 0.5);
}
#start:hover {
  background-color: rgba(65, 65, 65, 0.5);
  cursor: pointer;
}
#start-icon {
  width: 15px;
  height: 15px;
}
@keyframes open {
  0% {
    bottom: -75%;
  }
  100% {
    bottom: 60px;
  }
}
@keyframes close {
  0% {
    bottom: 60px;
  }
  100% {
    bottom: -75%;
  }
}
#start-menu {
  width: 75vh;
  position: fixed;
  background-color: rgba(25, 25, 25, 0.75);
  bottom: -100%;
  left: 10px;
  height: 75%;
  border-radius: 40px;
  z-index: 2147483646;
}
.opened {
  animation-name: open;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}
.closed {
  animation-name: close;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in;
}
#search {
  width: calc(100% - 65px);
  position: absolute;
  background-color: rgba(25, 25, 25, 0.5);
  top: 15px;
  left: 15px;
  height: 40px;
  border-radius: 40px;
  color: white;
  border-style: solid;
  border-color: rgba(50, 50, 50, 0.5);
  padding: 0 15px;
}
.start-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, 100px);
  grid-auto-rows: 100px;
  gap: 10px;
  padding: 20px;
  top: 50px;
  width: calc(100% - 40px);
  height: calc(100% - 100px);
  overflow: scroll;
  justify-content: center;
  align-content: start;
}
.icon-button {
  color: white;
  background-color: rgba(0, 0, 0, 0.25);
  border-color: rgba(25, 25, 25, 0.25);
  border-radius: 20px;
  border-style: solid;
}
#time-container {
  background-color: rgba(50, 50, 50, 0.5);
  color: white;
  width: 75px;
  height: 26px;
  border-radius: 26px;
  border-style: solid;
  border-color: rgba(65, 65, 65, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
#time {
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 90%;
}
.pane {
  position: absolute;
  width: 25%;
  height: 35%;
  background-color: rgba(0, 0, 0, 0.5);
  border-color: rgba(75, 75, 75, 0.5);
  border-style: solid;
  border-width: 2px;
  border-radius: 20px;
  overflow: hidden;
}
.titlebar {
  display: flex;
  width: 100%;
  height: 35px;
  position: sticky;
  top: 0;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 35px;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  padding-left: 10px;
  padding-right: 3px;
  box-sizing: border-box;
}
.pane.dragging .titlebar {
  background-color: rgba(0, 0, 0, 0.5);
}
.content {
  height: calc(100% - 20px);
  overflow: scroll;
  color: white;
}
.corner {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 24px;
  height: 24px;
  cursor: nwse-resize;
}
.close {
  background-color: rgba(0, 0, 0, 0.5);
  border-color: rgba(75, 75, 75, 0.5);
  width: 30px;
  height: 30px;
  border-radius: 100%;
  color: white;
  border-style: solid;
}
