#container {
	width: 65vw;
  height: auto;
  margin: auto; 
	display: flex;
  justify-content: center; 
  margin-bottom: 15px;
  background-color: #F3E6D8;
  padding: 15px; 
  border-radius: 10px;
  box-shadow: 2px 2px 15px #6D8876; 
}

body {
	background-color: #1D1C20; 
}

input, button {
	background-color: #CBC9BA;
  border: none;
  border-radius: 10px; 
  padding: 15px; 
  margin: 10px;  
  box-shadow: 1px 1px 5px black; 
}

button {
	height: 50px;
}

button:active, .button:active { 
  border: none; 
  box-shadow: 0px 0px 0px; 
} 

button:focus, input:focus {
	outline: none;
}