html,
body {
  height: 100%;
}

body {
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
}

#viewport {
  width: 80%;
  height: 300px;
  position: absolute;
  overflow-x: auto;
  background-image: url(../images/space-background-big01.png);
  scroll-behavior: smooth;
}

#ports {
  width: 0px;
  margin-top: 96px;
  display: flex;
  justify-content: space-around;
}

#ports > .port {
  width: 100px;
  height: 64px;
  background-image: url("../images/planet.png");
}

#ship {
  width: 128px;
  height: 64px;
  background-image: url("../images/rocket-ship.png");
  position: absolute;
}

#sailbutton {
  border: 0;
  background-color: #fb3640;
  border-bottom: 4px solid #d8040f;
  color: white;
  font-family: inherit;
  padding: 5px 5px;
  position: absolute;
  bottom: 20%;
  left: 45%;
  width: 10%;
  font-family: "VT323", monospace;
}

#sailbutton:hover {
  color: red;
  background-color: white;
  border-bottom-width: 0;
  border-bottom: 4px solid #d8040f;
}

#message {
  padding: 16px;
  font-family: "VT323", monospace;
  position: absolute;
  width: 100%;
  bottom: 0;
  border-top: 3px solid black;
  background-color: white;
}

#hud {
  background-color: black;
  position: absolute;
  align-self: flex-start;
  justify-content: flex-end;
  padding-top: 5%;
  width: 80%;
}

#port-status {
  background-color: black;
  font-family: "VT323";
  color: white;
  white-space: pre;
}

#form {
  background-color: white;
  font-family: "VT323";
  width: 20%;
  padding: 5px;
  margin-top: 10px;
  margin-bottom: 2px;
}

button[type="submit"] {
  background-color: #fb3640;
  border: 0;
  border-bottom: 4px solid #d8040f;
  color: white;
  margin-top: 5px;
}

#crew-comms {
  position: absolute;
  bottom: 70px;
  width: 90%;
}
