.lamp{
 position:relative;
 display: flex;
 justify-content: center;
}
.glass{
	width:200px;
    height:350px;
    border-radius:75px;
	position:absolute;
	background: #8B4513;
	border: 5px solid #DAA520;
   transition: 2s; 

}
#base {
    width:150px;
    height:120px;
    border-radius:0px 0px 75px 75px;
	position:absolute;
	background:gray;
	margin-top:310px;
	margin-left:0px;

}
.container {
	/*max-width: 800px;*/
	display: flex;
	justify-content: center;
}
.lamp_on{
	background:yellow;
 filter:drop-shadow(0 0 20px #FAA500);
}