main {
	display: flex;
	flex-direction: column;
	align-items: start;
	justify-content: center;
	height: 500px;
	width: 65%;
	margin-top: 100px;
}

main h1 {
	width: 900px;
	font-size: 70px;
	font-weight: bold;
	margin-bottom: 20px;
	text-align: left;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-image: linear-gradient(45deg, #ff2600, #af4261);
}

main p {
	width: 900px;
	font-size: 20px;
	font-weight: 500;
	text-align: left;
	color: #929292;
}

main div {
	width: 900px;
	display: flex;
	flex-direction: row;
	gap: 20px;
	margin-top: 40px;
}

main div a.button {
	background-color: white;
	color: #000;
	text-decoration: none;
	border: none;
	border-radius: 8px;
	padding: 10px 20px;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	transition: transform 0.3s ease;
}

main div a.button:hover {
	transform: scale(1.05);
}

main div a.button:active {
	transform: scale(0.95);
}

main div a:not(.button) {
	text-decoration: none;
	border: none;
	width: 35px;
	height: 35px;
	cursor: pointer;
	transition: transform 0.3s ease;
}

main div a:not(.button):hover {
	transform: scale(1.05);
}

main div a:not(.button):active {
	transform: scale(0.95);
}

@media (any-pointer: coarse) {
	main {
		width: 90%;
	}

	main h1 {
		font-size: 40px;
		width: 90%;
	}

	main p {
		font-size: 16px;
		width: 90%;
	}

	main div {
		width: 90%;
	}
}