@import url('student.css');
@import url('https://fonts.googleapis.com/css?family=Roboto+Mono');

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url('https://unsplash-source-alternative.vercel.app/random/1600x900');
  background-size: cover;
  background-repeat: no-repeat;
}

#terminal-container {
  width: 100%;
  height: 100%;
  min-width: 700px;
  max-width: 1080px;
  min-height: 450px;
  max-height: 550px;
  background-color: black;
  border-radius: 8px;
  font-family: 'Roboto Mono', monospace;
  box-shadow: rgba(255, 255, 255, 0.16) 0px 1px 4px;
}

#terminal {
  background-color: black;
  padding: 20px;
  border-radius: 20px;
}

.row {
  height: 32px;
  background-color: grey;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.column {
  width: 100px;
  margin-left: 20px;
}
.dot {
  height: 12px;
  width: 12px;
  border-radius: 50%;
  display: inline-block;
  margin-top: 10px;
}
.xterm .xterm-viewport {
  overflow-y: auto;
}
