menu {
	padding: 1.25rem 0;
	background: #E82712;
	position: fixed;
	width: 100%;
	margin: 0;	
}

.wrapper {
	height: 100vh;
	text-align: center;	
}

ul {
	padding: 0; 
	margin: 0;
	list-style: none;
}

.link {
	position: relative;
}

.submenu {
	position: absolute;
	background: white;
	width: max-content;
	padding: .5rem .8rem;
	left: 50%;
	transform: translate(-50%);
	display: none;
}

.submenu a {
	color: black; 
	font-size: 1rem;
	margin: 0;
}

.submenu a:hover {
	color: black; 
}

h1 {
	font-size: clamp(6rem, 8vw, 8rem);
}

p {
	font-size: 1.3rem;
	width: 85%;
	margin: auto;
}

nav a {
	margin: 0 1rem;
	color: white;
	text-decoration: none;
	font-size: 1.2rem;
}

nav a:hover {
	text-decoration: underline;
	color: white;
}

img {
	padding-top: 3rem;
	width: 100vw;
}

 