/* * {
	border: solid 1px red;
} */

* {
	margin: 0;
	padding: 0;
	font-family: Georgia, serif;
}

img {
	width: 100%;
	height: auto;
}

header {
	height: 390px;
	margin: 0 0 100px 0;
	background-image: url("background.png");
	background-position: 90% 30%;
	background-size: cover;
	position: relative;
}

.header-intro {
	font-size: 16px;
	color: white;
	position: absolute;
	left: 0;
	padding: 3vw;
	bottom: 0;
	max-width: 400px;
	background: rgba(19, 19, 150, 0.717);
}

h2 {
	font-size: 50px;
	line-height: 1;
	font-family: Georgia, serif;
}

#main-menu {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(0, 0, 0, 0.7);
	/* display: flex;
	justify-content: flex-end; */
	display: grid;
	grid-auto-flow: column;
	justify-content: flex-end;
	box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.538);
}

#main-menu a {
	font-size: 20px;
	padding: 8px 15px;
	font-family: Georgia, serif;
	font-weight: bold;
	color: white;
	transition: background 1s ease-in;
	text-decoration: none;
}

#main-menu a:hover {
	background: rgb(184, 0, 0);
	color: white;
	transition: background 0.3s ease-in;
}

#main-content {
	/* transform: rotate(2deg); */
	display: grid;
	gap: 50px;
	grid-template-columns:1fr 1fr;
	max-width: 800px;	
	padding: 0 50px;
	margin: 0 auto;
}

p,
h1,
h2 {
	margin-bottom: 20px;
}

@media (max-width:700px) {
    #main-content {
	grid-template-columns: 1fr;
	}
}
