@import url('https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');

html{
	background-image: url(../img/background.jpg);
}

/*=============================================Шапка========*/
.mobile-container {
  max-width: 480px;
  margin: auto;
  background-color: white;
  height: 500px;
  color: white;
}

.menu {
  overflow: hidden;
  background-color: white;
  position: relative;
	border-radius: 15px 0px 15px 0px;
	margin-bottom: 5px;
}

.menu #myLinks {
  display: none;
}

.menu a {
  color: black;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 27px;
  display: block;
}

.menu a.icon {
  background: white;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

.menu a:hover {
  background-color: #ddd;
  color: white;
}

.menuactive {
  background-color: blueviolet;
	color: white;
}

.logo {
	text-align: center;
	font-family: 'Sail';
}
/*===========================================================*/

/*============================================ Main =======================*/
main {
	background-color: rgba(255, 255, 255, 0.87);
	border-radius: 0px 15px 0px 15px;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 5px;
	background-size: cover;
	background-position: center;
	padding: 5px 0px 5px 0px;
}


footer {
	display: flex;
	background-color: white;
	color: black;
	border-radius: 15px 0px 15px 0px;
}
/*=========================================================================*/
@media (max-width:375px) {						/*=== Телефон ===*/
	.menu a {
		font-size: 17px;
	}
}