* {
	padding: 0;
	margin: 0;
}

body {
	background: linear-gradient(260deg, #571616 0%, #c22f2f 100%);
	font-family: sans-serif;
	font-size: 30px;
}

.wrapper {
	border-radius: 50px;
	padding: 20px;
	width: 75vw;
	margin: 0 auto;
	/*display: flex;*/
}

.flex-nav {
	border: 2px solid black;
	width: 100%;
}

ul {
	border-radius: 50px;
	display: flex;
	list-style: none;
}

li {
	flex-grow: 1;
}

a {
	box-sizing: border-box;
	text-decoration: none;
	display: inline-block;
	color: white;
	padding: 10px 0px;
	text-align: center;
	background: rgba(0, 0, 0, 25%);
	width: 100%;
}

a:hover {
	color: #876565;
	background: rgba(0, 0, 0, 50%);
}

header {
	display: flex;
	justify-content: center;
	padding: 10px;
}

.photo {
	height: 20vw;
}

.banner {
	padding: 10px;
	background: rgba(0, 0, 0, 0.2);
}

.banner img {
	width: 100%;
}

.content {
	display: flex;
	justify-content: center;
}

.signup {
	display: flex;
	justify-content: center;
	padding: 10px;
	align-items: center;
}

.signup input {
	font-size: 30px;
	background: rgba(255, 255, 255, 0.2);
	margin: 5px 0;
	border-color: black;
	margin: 5px;
	color: white;
}

.signup input::placeholder {
	color: rgba(0, 0, 0, 0.2);
}

.signup form {
	display: flex;
	align-items: center;
}

.signup input:focus {
	outline: none;
	background: rgba(0, 0, 0, 0.3);
}

#btn {
	background: rgba(0, 0, 0, 0.2);
	padding: 10px;
	font-size: 24px;
}

#btn:hover {
	background: rgba(0, 0, 0, 0.4);
	cursor: pointer;
}

@media all and (max-width: 1200px) {
	.flex-nav ul {
		flex-wrap: wrap;
	}

	.flex-nav li {
		flex-basis: 50%;
	}

	.flex-nav .soc {
		flex-basis: 25%;
	}
}

@media all and (max-width: 700px) {
	body {
		padding: 0;
	}

	.wrapper {
		width: 100vw;
	}

	.flex-nav ul {
		flex-wrap: wrap;
	}

	.flex-nav li {
		flex-basis: 100%;
	}

	.flex-nav .soc {
		flex-basis: 100%;
	}

	.banner {
		display: none;
	}

	.signup form {
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
}