/* Сброс отступов */
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/*  тело сайта */
html,body
{
    height: 100%; 
    margin: 0; 
}
.container { 
	display: flex; 
	flex-direction: column; 
	min-height: 100vh; /* Заставляет контейнер занимать минимум 100% высоты окна */ 
}
main
{ 
	flex: 1; /* Это позволяет main занимать оставшееся пространство */ 
	width: 90%;
	align-self: center
}

body
{
	color: #DCDCDC;
	font-family: Verdana;
	font-weight: normal;
	font-size: 16px;
	line-height: 1.1875;
	margin: 0;
	padding: 0;
	height: 100%;
	display: flex;
	flex-direction: column;
}
body:after
{
	background-image: url('../images/background.jpg');
	background-attachment: fixed;
	background-position: center;
	background-repeat: repeat-x;
	background-size: cover;
	position: fixed;
	content: "";
	height: 100%;
	left: 0;
	right: 0;
	top: 0;
	z-index: -1;
}
/*  поведение ССЫЛОК */
a
{
	color: #F5F5F5;
	text-decoration: underline;
}
a:visited
{
	color: #808080;
}
a:active
{
	color: #F5F5F5;
}
a:hover
{
	color: #D3D3D3;
	text-decoration: underline;
}
input:focus, textarea:focus, select:focus
{
	outline: none;
}
#content
{ 
	flex: 1; 
}
/* Картинка ЦУП "О Нас" 
#about-cup 
{
	display: block;
	margin: auto;
}
*/