* { padding: 0; margin: 0; } 

.download{                                                                                  /* контейнер для ссылок для сканичивания html/css-кода */
    position: fixed;   
    bottom: 0;
    right: 0;
    margin-right: 10em;
    margin-bottom: 10em;
}

.download a{                                                                                /* форматирование ссылок для сканичивания html/css-кода */
    color: blue;
    text-decoration: underline;
}

/**************************************************************************************/

#container a{
	font-style: italic; 
	color: white;
}

body { background-color: lightsalmon; }

#container{	
	position:absolute; 
	border: 1px solid black;
	background-color: gold;
	width: 600px;
	height: 600px;
	border-radius: 50% 50%;
	text-align: center;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}

.bmenu{ 
	position: relative;
	top: 30%;
	width: 80%;
	margin-left: auto;
	margin-right: auto;
}

.bmenu li{ 
	font-size: 50px; 
	display: block; 
}

.bmenu li a{
	display: block;
	text-transform: uppercase;
	text-shadow: 5px 5px 5px black;
	padding: 5px;
	background: #ffe663;
	letter-spacing: 1px;
	transition: all 0.4s ease-in-out;
}
.bmenu li:first-child a{
	border-radius: 25px 25px 0px 0px;
}
.bmenu li:last-child a{
	border-radius: 0px 0px 25px 25px;
}
.bmenu:hover li a{
	text-shadow: 0px 0px 10px white;
	opacity: 0.4;
}
#container .bmenu li a:hover{
	background: transparent;
	text-shadow: 5px 5px 5px white;
	color: black;
	opacity: 1;
}

a{ text-decoration: none; }