body{
	font-family: Verdana;
}

.cmd{

	width: 75%;
	height: 100vh;
	position: fixed;
	top:0px;
	left:0px;

  padding: 15px;

  box-sizing: border-box;

}

.log{

  background-color: #00A2E8;
  border: 1px solid black;
  width: 100%;
  margin-bottom: 15px;
	overflow-y: auto;

}

#log{
	max-height: 70%;
}

#currentLog{
	max-height: 20%;
}

.log div{
  padding: 5px;
}

input{

  background-color: #00A2E8;
  color: black;
  border: 1px solid black;
  padding: 10px;
  font-size: 23px;
  width: calc(100% - 30px);
  position: absolute;
  bottom: 15px;
  left: 15px;

}

.dashboard{

	width: 25%;
	height: calc(100vh - 100px);
	position: fixed;
	top:0px;
	left:75%;
  padding: 10px;
  box-sizing: border-box;

}

#countryName{

  text-align: center;
  margin-bottom: 30px;

}

#doneButton{

	width: 15%;
	height: 80px;
	position: fixed;
	bottom: 10px;
	left: 80%;
	background-color: green;
	text-align: center;
	line-height: 80px;
	font-size: 42px;
	color: white;
	cursor: pointer;
	border-radius: 15px;

	transition: transform 0.5s;

}

#doneButton:hover{

	transform: scale(1.1);

}
