@import "./font.css";

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Proxima";
	background-color: #f4f4f4;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}

.container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-color: #0F1749;
	background-image: radial-gradient(400% 100% at center, #0F1749 0%, #6F9DDC 100%);
	height: 100vh;
	width: 100vw;
}

img.hero {
	width: 100%;
	margin-bottom: 24px;
}

.content {
	padding: 0 24px;
}

h1 {
	font-size: 32px;
	line-height: 34px;
	color: #fff;
	margin-bottom: 16px;
	font-weight: 700;
}

.yellow-font {
	color: #FF9F00;
	font-weight: 700;
}

p {
	font-size: 16px;
	font-weight: 600;
	line-height: 19.49px;
	color: #fff;
	margin-bottom: 22px;
}

.buttons {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 16px;
}

.download-btn {
	border: none;
	cursor: pointer;
	background: none;
}

.download-btn img {
	height: 48px;
}
