body {
	background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url(fone.jpg);
	color: #fff;
	font-family: sans-serif;
	background-size: cover;
	background-attachment: fixed;
	margin: 0;
	padding: 0;	
}	

h1 {
	text-transform: uppercase;
	text-align: center;
	margin-top: 150px;
	font-size: 50px;
}

.mytext{
	text-transform: uppercase;
	text-align: center;
	margin-top: 150px;
	font-size: 50px;
}

.myimage{
	text-align: center;
	display:block;
	margin:auto;
}

p {
	font-size: 25px;
	display: block;
	margin: 0 auto;
	width: 80%;
}

.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;
}

.member {
	
	align-items: center;
	position: relative;
	max-width: 300px;
	padding: 0 5px;
	transition: .5s all ease;
  }
  
  .photo {
	
	width: 100%;
  }
  
  .description {
	
	margin: 0 10px;
	position: absolute;
	top: -10px;
	color: #fff;
	font-family: sans-serif;
	width: 90%;
	height: 100%;
	text-align: center;
	background-color: rgba(242, 58, 67, .81);
	user-select: none;
	opacity: 0;
	transition: .5s;
  }
  
  .name {
	font-weight: bold;
	font-size: 35px;
	line-height: 0;
	margin-top: 70%;
  }
  
  .member:hover {
	margin-top: -40px;
  }
  
  .member:hover .description {
	opacity: 1;
  }

.mytable{
	
	display: flex;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}


#footer {
    position: fixed; /* Фиксированное положение */
    left: 0; bottom: 0; /* Левый нижний угол */
    padding: 10px; /* Поля вокруг текста */
    background: #5c615d; /* Цвет фона */
    color: #fff; /* Цвет текста */
	width: 100%; /* Ширина слоя */
	text-align: center;	
   }