/* CSS Document */
@charset "utf-8";

html {
	height: 100%;
}

body {
	background-image: linear-gradient(
		120deg,
		#fee140 0%,
		#fa709a 100%
	);
	height: 100%;
	margin: 0;
	background-repeat: no-repeat;
	background-attachment: fixed;
	font-family: system-ui, -apple-system;
	letter-spacing: -0.02em;
}

h1 {
	font-size: 2.8rem;
	color: #405dfe;
	font-weight: 800;
}

p {
	font-size: 1.4rem;
	font-weight: 400;
}

h2 {
	font-size: 2.2rem;
	font-weight: 700;
	color: #405dfe;
	margin-top: 3.4rem;
}

main {
	width: 55%;
	margin: auto;
	text-align: center;
}

button {
	display: inline-flex;
	color: white;
	font-size: 1.3rem;
	font-family: system-ui, -apple-system;
	letter-spacing: -0.02em;
	font-weight: 400;
	margin: 1rem 0.5rem 0 auto;
	padding: 0.4rem 0.6rem 0.4rem 0.6rem;
	background-color: #222;
	border: 0;
	border-radius: 2rem;
	transition: 0.3s ease;
}

button:hover {
	background-color: #405dfe;
	cursor: pointer;
}

audio {
	width: 100%;
	margin: 0;
}

section {
	margin-top: 4rem;
}

section:last-child {
	margin-bottom: 4rem;
}

@media screen and (max-width: 1300px) {
	main {
		width: 65%;
	}
}

@media screen and (max-width: 760px) {
	main {
		width: 90%;
	}
	section {
		margin-top: 3.6rem;
	}
	audio {
		width: 100%;
		margin: 0;
	}
}
