* {
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: black;
}

.container {
  /*border: 1px solid red;*/
  height: min-content;
  width: 800px;
  margin: 30px auto 30px auto;
  padding: 30px;
}

#greet {
  display: block;
  border: 2px solid white;
  background-color: white;
  height: 180px;
  width: 300px;
  color: black;
  margin-bottom: 60px;
  font-family: "Courier New", monospace;
}

.intro {
  padding-left: 20px;
  padding-right: 20px;
  font-size: 16px;
  text-align: justify;
}

#logs {
 border: 2px solid white;
 height: 300px;
 width: 600px;
 color: white;
 margin-left: 130px;
 font-family: "Courier New", monospace;
}

.info {
  padding-left: 40px;
  padding-right: 40px;
  font-size: 20px;
  font-weight: 100;
}

#logs a {
  color:  #00FF0D;
}

#logs a:visited {
  color: #F527E7;
}

/* janela 1 */
.bar1 {
  display: flex;
  position: relative;
  border-bottom: 3px solid white;
  background-color: black;
  color: white;
  height: 40px;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 20px;
  align-items: center;
  font-size: 12px;
  font-weight: 900;
}
.botoes {
  position: absolute;
  right: 10px;
  width: 100px;
  text-align: center;
}

.bar1 button {
  background-color: black;
  border: 1px solid white;
  color: white;
  margin-left: 5px;
  padding: 4px;
}

/* janela 2 */
.bar2 {
  display: flex;
  position: relative;
  border-bottom: 3px solid white;
  background-color: white;
  color: black;
  height: 40px;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 40px;
  align-items: center;
  font-size: 12px;
  font-weight: 900;
}

.botoes {
  position: absolute;
  right: 10px;
  width: 100px;
  text-align: center;
}

.bar2 button {
  background-color: white;
  border: 1px solid black;
  color: black;
  margin-left: 5px;
  padding: 5px;
}

/* footer */
footer {
  /* border: 3px solid purple; */
  color: white;
  text-align: center;
  font-family: "courier new", monospace;
  font-size: 12px;
  height: 90px;
  width: 800px;
  margin: 0px auto 5px auto;
  padding-top: 5px;
}




