body {
    background-color: rgb(50, 66, 83);
}

#red {
    background-color: rgb(247, 101, 90);
    border-radius: 100%;
    width: 15px;
    height: 15px;
    margin: 0 auto;

    position:relative;
    top: 4.2px;
    left: 7px;

    display: inline-block;

}
#yellow {
    background-color: rgb(225, 192, 76);
    border-radius: 100%;
    width: 15px;
    height: 15px;
    margin: 0 auto;

    position:relative;
    top: 4.2px;
    left: 7px;

    display: inline-block;

}
#green {
    background-color: rgb(110, 183, 70);
    border-radius: 100%;
    width: 15px;
    height: 15px;
    margin: 0 auto;

    position:relative;
    top: 4.2px;
    left: 7px;

    display: inline-block;
}

#terminal {
    -webkit-box-shadow: 10px 10px 31px -5px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 10px 31px -5px rgba(0,0,0,0.75);
    box-shadow: 10px 10px 31px -5px rgba(0,0,0,0.75);

    border-radius: 5px;
}

#term-bar {
    text-align: left;
    width: 100%;
    height: 25px;
    background-color: rgb(54, 54, 54);
    margin: 0 auto;
    font-family: monospace;
    padding: auto;
    float: none;
    border-radius: 5px 5px 0 0;
    padding: 1px;
}

#term-screen {
    background-color: rgb(18, 20, 22);
    width: 100%;
    height: 450px;
    border-radius: 0 0 5px 5px;
    margin: 0 auto;
    padding: 1px;

    overflow:hidden;
}

.term-font {
    color: #fff;
    font-family: monospace;
    font-size: 15px;
    text-align: left;
    position: static;
    padding-left: 10px;
}

.body-text {
    color: rgb(230, 230, 230);
    font-family: monospace;
    font-size: 15px;
}

.body-text a {
    color: rgb(158, 187, 224);
}

.content {
    width: 750px;
    margin-left:auto;
    margin-right:auto;
    text-align: center;

    display: none;
}

#head {
    font-family: monospace;
    color: #fff;
    margin: auto;
    padding: 25px;
    font-size: 42px;
    text-align: center;
}

#subhead {
    font-family: monospace;
    color: #fff;
    margin: auto;
    padding: 25px;
    padding-top: 0;
    font-size: 25px;
    text-align: center;
}


@media only screen and (max-width: 750px) {
  .content {
    width: 100%;
  }

  .term-font {
      font-size: 1.4vh;
  }

  #terminal {
      width: 98%;
  }

  #term-bar {
      width: 100%;
  }

  #term-screen {
      width: 100%;
      height: 60vw;
  }

}
