* {
	padding: 0;
	margin: 0;
}

body {
	font-family: 'Tahoma';
	background-color: #fcfbfa;
}

.container {
	width: 90%;
	margin: 0 auto;
}

header {
	height: 100px;
	background-color: #fff;
}

img {
	height: 80px;
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

ul {
	display: flex;
	width: 60%;
	justify-content: space-between;
	height: 100px;
	align-items: center;
	list-style: none;
	position: relative;
}

li, .border {
	background-color: yellow;
	padding: 10px 20px;
	border-radius: 20px;
	font-weight: bold;
	transition: 0.2s;
}

li:hover {
	background-color: #ed646a;
	transition: 0.2s;
	color: #fff;
	box-shadow: 0 0 20px rgba(237, 100, 106,0.5);
}

.logo {
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: 'Impact';
	font-size: 46px;
}
.card {
	width: 300px;
	height: 420px;
	border: 5px  solid pink;
	padding-top: 20px;
	padding-left: 20px;
	font-size: 18px;
}

.card img {
	height: 280px;
	width: 280px;
	margin-bottom: 20px;
}

.sell {
	font-size: 24px;
	display: flex;
	justify-content: space-between;
	width: 280px;
	height: 90px;
	align-items: center;
}

.sell a {
	text-decoration: none;
	font-weight: bold;
	font-size: 24px;
	padding: 10px;
	background-color: gold;
	color: black;
	border-radius: 20px;
}

.cards {
	display: flex;
	justify-content: space-between;
}

.sell a:hover {
	background-color: green;
	transition: 0.2s;
	color: #fff;
	box-shadow: 0 0 20px rgba(237, 100, 106,0.5);
}
.sell {
	border-radius: 10px;
	font-weight: bold;
	transition: 0.2s;s
}

.h1 {
	text-align: center;
	margin: 100px 0;
}

.contacts {
	width: 100%;
   height: 500px;
   background: linear-gradient(red, yellow, blue, orange);
   margin-top: 50px;
}

.contact {
	display: flex;
	justify-content: space-around;
}

.contact img {
  width: 400px;
  height: 400px;
  margin-top: 50px;
  border-radius: 200px	;
}

.content {
	width: 800px;
}
.border {
	margin-top: 10px;
	width: 200px;
}
form {
	display: flex;
	flex-direction: column;
}

input {
	width: 400px;
	font-size: 32px;
	padding: 20px;
	margin-bottom: 20px;
	border: 0;
	border-bottom: 6px solid blue;
}

@media only screen and (max-width: 992px) {
	nav {
		justify-content: center;
		flex-direction: column;
	}
   
   ul {
   	flex-direction: column ;
   	width: 90%;
   }
   li {
   	width: 90%;
   	text-align: center;
   	font-size: 40px;
   	margin-bottom: 20px;
   }
   header {
   	height: 500px;
   }
   .cards {
   	justify-content: center;
   	flex-direction: column;
   }
   .card {
   	width: 100%;
   	height: 500px;
   	margin-bottom: 20px;
   }
   .card img {
   	width: 50%;
   	height: 359px;
   }
   .card h3 {
   	font-size: 50px;
   }
   .sell {
   	width: 100%;
   	justify-content: space-around;
   }
   .contact img {
   	display: none;
   }
   .content p{
   	font-size: 36px;
   }
   .contacts {
   	height:  1500px;
    }
    .form {
    	display: none;
    }
}






