* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	background-color: white;
	font-family: serif;
	width: 100%;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}
header, footer {
	width: 100%;
	background-color: rgb(36, 42, 140);
	color: white;
	font-size: 30px;
	padding: 20px;
}
footer{
	text-align: right;
}
#con{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 30px 0 30px 0;;
	flex: 1;
}
#cover {
	display: block;
	width: 70%;
	height: auto;
}
#desc {
	width: 70%;
	text-align: justify;
	margin: 20px 0 20px 0;;

}
#options {
	width: 100%;
	display: flex;
	justify-content: center;
	gap: 20px;
}
.btn {
	width: 150px;
	padding: 7px;
	font-size: 14px;
	color: black;
	text-decoration: none;
	background-color: yellow;
	text-align: center;
	border-radius: 10px;
}

	


@media all and (min-width: 1200px) {
#con{
	flex-direction: row;
	justify-content: center;
	gap: 20px;
}
#cover{
	width: 20%;
}
#desc{
	width: 30%;
}
#options{
	width: 40%;
	flex-direction: column;
	align-items: center;
}
.btn {
	width: 200px;
	padding: 10px;
	font-size: 20px;
	border-radius: 15px;
}}