body {
  font-family: Helvetica, 'Noto Sans', sans-serif;
  background-color: #d9e0ff;
  height: 100vh;
  margin: 0;
}

.topbar {
  background-color: #121e8d;
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 5px;
}

#welcomeopen {
  cursor: pointer;
}

#desktopApps {
  padding-top: 50px;
  padding-left: 16px;
}

.appicon {
  width: 90px;
  text-align: center;
  cursor: pointer;
  padding: 8px;
  margin-bottom: 10px;
}

.appicon p {
  margin: 4px;
}

.appimage {
  width: 55px;
  height: 55px;
  object-fit: cover;
  border: solid;
  background-color: white;
}

.basicIcon {
  font-size: 35px;
  border: solid;
  background-color: white;
  width: 55px;
  height: 55px;
  margin: auto;
}

.selected {
  background-color: #b7c2ff;
}

.window {
  border: solid;
  background-color: white;
  width: 500px;
  padding: 10px;
  position: absolute;
  top: 80px;
  left: 80px;
}

.windowheader {
  background-color: #121e8d;
  color: white;
  padding: 3.5px;
  margin: 3.5px;
  cursor: grab;
  user-select: none;
  display: flex;
  justify-content: space-between;
}

.closebutton {
  cursor: pointer;
}

.windowimage {
  border-radius: 16px;
  object-fit: cover;
  width: 300px;
}

.appcontent {
  display: flex;
  gap: 10px;
  height: 350px;
}

#missionList {
  width: 140px;
  border-right: solid;
  padding-right: 8px;
  overflow-y: auto;
}

.missionItem {
  border: solid 1px;
  margin-bottom: 6px;
  padding: 5px;
  cursor: pointer;
}

#missionText {
  width: 300px;
  overflow-y: auto;
}

.fuelOuter {
  border: solid 1px;
  width: 250px;
  height: 20px;
}

#fuelBar {
  background-color: #121e8d;
  width: 0%;
  height: 20px;
}

#launchLog {
  border: solid 1px;
  height: 90px;
  overflow-y: auto;
  padding: 5px;
}

#rocketPreview {
  border: solid 1px;
  width: 180px;
  min-height: 180px;
  padding: 8px;
  background-color: #eeeeee;
  text-align: center;
}

.rocketPart {
  border: solid 1px;
  background-color: white;
  margin: 4px;
  padding: 5px;
}

button {
  margin: 3px;
}

#moon {
  position: fixed;
  right: 40px;
  top: 70px;
  font-size: 90px;
  z-index: 0;
  animation: spinMoon 12s linear infinite;
}

@keyframes spinMoon {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

#gameMessage {
  border: solid 1px;
  padding: 6px;
  background-color: #eeeeee;
}