.head{
  /*height: 40%;*/
}

h1{
  width: 100%;
  text-align: center;
  font-size: 50px;
  font-weight: 700;
  color: white;
}

#step{
  display: flex;
  justify-content: space-between;
}

.terminal{
  height: 43%;
  font-family: 'Cutive Mono', monospace;
  font-size: 16px;
  background-color: #191919;
  padding: 22px;
  color: #13c24f;
  border-radius: 5px;
  /*border-top: 20px solid rgb(227, 227, 227);*/
  box-shadow: 0 2px 10px black;
  box-sizing: border-box;
}

.terminal input{
  font-family: 'Cutive Mono', monospace;
  width: 90%;
  font-size: 18px;
  background: none;
  border: none;
  outline: none;
  color: #13c24f;
}

#prev-level, #next-level{
  padding: 0 10px;
  background-color: rgba(256, 256, 256, 0.3);
  color: white;
  border: 1px solid white;
  cursor: pointer;
}
#prev-level:hover, #next-level:hover{
  background-color: rgba(256, 256, 256, 0.8);
}
#prev-level{
  border-radius: 5px 0 0 5px;
}
#next-level{
  border-radius: 0 5px 5px 0;
}


#terminal-command-list{
  max-height: 95%;
  overflow-y: auto;
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 1.5;
}

#terminal-command-list li::before{
  content: '> '
}
#terminal-command-list li{
  font-size: 18px;
  margin: 5px 0;
}

#terminal-command-list div{
  color: white;
}

#terminal-command-list div.invalid{
  color: red;
}

#terminal-command-list div.valid{
  color: #13c24f;
}

#terminal-command-list div.valid a{
  color: red;
}

#terminal-command-list div.commit-head{
  color: yellow;
}

/*.instructions-container{
  height: 25vh;
  overflow-y: auto;
}*/

.level-instructions{
  margin-top: 20px;
  color: white;
  overflow-y: auto;
  padding-bottom: 20px;
}

#instructions > ul {
  margin-left: 20px;
  list-style: disc;
}

.outro{
  width: 100%;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}

.outro.big{
  font-size: 30px;
}

.outro a{
  margin: 0 5px;
  padding: 5px 10px;
  background-color: rgb(227, 227, 227);
  color: rgb(42, 42, 42);
  box-shadow: 2px 2px 2px rgba(0,0,0,0.8);
  border-radius: 10px;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
  text-decoration: none;
}
.outro a:hover{
  margin: 0 5px;
  padding: 5px 10px;
  background-color: rgb(136, 136, 136);
  color: white;
  box-shadow: 4px 4px 2px rgba(0,0,0,0.8);
  border-radius: 10px;
}

.header{
  display: flex;
  justify-content: flex-start;
  margin: 10px 0 20px 0;
}

.header h2{
  font-size: 20px;
  font-weight: 700;
  background-color: rgba(256, 256, 256, 0.3);
  padding: 5px 10px;
  border: 1px solid white;
  width: 50%;
}

#instructions{
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
  font-family: 'Roboto', sans-serif;
}

.bg{
  background-color: rgba(256, 256, 256, 0.3);
  padding: 1px 6px;
  font-family: 'Cutive Mono', monospace;
  font-weight: 700;
}
