* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	min-height: 100vh;
	font-family: 'Nunito', sans-serif;
	padding: 1rem;
	background-color: #f9f9f9;
}

#logo {
	position: absolute;
	top: 1rem;
	left: 1rem;
	max-width: 150px;
	width: 20%;
	height: auto;
}

#bookCoverDiv,
#websiteText {
	width: 100%;
}

#bookCoverDiv {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 4rem;
}

#bookCover {
	max-width: 50%;
	height: auto;
}

#websiteText {
	text-align: center;
	margin-top: 2rem;
	color: #202C66;
	padding: 0 1rem;
}

#welcome {
	font-weight: 700;
	font-size: 1.75rem;
	margin-bottom: 1rem;
}

#details {
	font-weight: 600;
	font-size: 1rem;
	margin-bottom: 1rem;
	line-height: 1.4;
}

#launch {
	background-color: #202C66;
	color: #fff;
	font-weight: 500;
	font-size: 1rem;
	padding: 1rem;
	border-radius: 0.5rem;
	display: inline-block;
}

#input-container {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 10px;
	width: 100%;
}


#launch input {
	font-size: 1rem;
	padding: 0.5rem;
	border: 1px solid #ccc;
	border-radius: 0.25rem;
	width: 95%;
	height: 2rem;
}

#visiting {
	font-weight: 500;
	font-size: 1rem;
	margin-top: 1rem;
}

#send-btn-container {
	display: flex;
	flex-direction: row-reverse;
	margin-top: 20px;
	width: 100%;
}

#send-email-btn {
	background-color: #202C66;
	border: 1px solid #202C66;
	border-radius: 0.25rem;
	width: 20%;
	height: 1.5rem;
	font-size: 15px;
	font-weight: 700;
	font-family: 'Nunito ', sans-serif;
	text-decoration: underline;
	color: #dfdfdf;
}

#send-email-btn:hover {
	cursor: pointer;
	color: #dfdfdf;
	border: 1px solid #dfdfdf;
	background-color: #202C66;
}

@media (min-width: 880px) {
	body {
		flex-direction: row;
		justify-content: center;
		align-items: center;
	}

	#bookCoverDiv,
	#websiteText {
		width: 45%;
	}

	#bookCoverDiv {
		margin-top: 0;
	}

	#websiteText {
		text-align: left;
		margin-top: 0;
		margin-left: 2rem;
		padding: 0;
	}

	#welcome {
		font-size: 2rem;
	}

	#details {
		font-size: 1.25rem;
	}

	#launch {
		font-size: 1.25rem;
	}

	#launch input {
		font-size: 1.25rem;
	}

	#visiting {
		font-size: 1.25rem;
	}
}