#container{
  height: 80vh;
  display: flex;
  width: 100%;
  align-items: flex-end;
}

h1{
  font-size: 2em;
}

body{
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 90vh;
}

.bar{
  background-color: black;
}

button{
  display: inline-block;
  padding: 0.3em 1em;
  text-decoration: none;
  border-radius: 4px;
  transition: .4s;
}

.enabled{
  color: #67c5ff;
  border: solid 2px #67c5ff;
}

.disabled{
  background: gray;
  color: black;
  border: solid 2px gray;
}

.enabled:hover {
  background: #67c5ff;
  color: white;
}


input{
  border: 2px solid #67c5ff/*aaa*/;
  border-radius: 4px;
  margin: 8px 0;
  outline: none;
  padding: 4px;
  box-sizing: border-box;
  transition: 0.3s;
  width: 75px;
  color: #67c5ff;
}

input:focus {
  border-color: dodgerBlue;
  box-shadow: 0 0 8px 0 dodgerBlue;
}

select{
  width: 150px;
	height: 27px;
	color:#67c5ff;
	border: 2px solid #67c5ff;
	border-radius: 4px;
}
/*select:focus{
	/*background:#67d5ff;
	color:white;
}*/
