body {
    background-image: url(background.jpg);
}

#container{
    width: 400px;
    height: 340px;
    background-color: rgba(255, 255, 255, 0.541);    
    margin: 0 auto;    
    text-align: center;
    vertical-align: middle;
    font-size: 18px;
}


#footer{
    height: 40px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.541);    
    text-align: center;
    position: fixed; /* Фиксированное положение */
    left: 0; bottom: 0; /* Левый нижний угол */
    padding: 10px; /* Поля вокруг текста */   
    color: rgb(0, 0, 0); /* Цвет текста */  
    font-size: 20px;  
}

.nav {
	list-style: none;
	display: flex;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;	
}

.nav-link {
	color: #fff;
	text-decoration: none;
	font-family: monospace;
	font-size: 22px;
}

.nav-item {
	margin: 0 30px;
	background: linear-gradient(180deg, transparent 60%, rgba(247, 2, 2, .6) 40%);
	background-position: right 100px top 0;
	background-repeat: no-repeat;
	transition: .5s;
}

.nav-item:hover {
	background-position: right 0 top 0;
}