html {
	height: 100%;
	width: 100%;
	overflow: hidden;
}

body {
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
		Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
		sans-serif;
	background-image: radial-gradient(ellipse at left top,
			#6F5A8D 0%,
			#8A84E2 100%);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	margin: 0;

	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5rem;
	height: 100%;
	width: 100%;
	overflow: hidden;
}


.background-glyph {
	position: absolute;
	z-index: -1;
	opacity: 0.3;
	bottom: 0;
	left: 0;
	width: 75%;
}

h1 {
	width: 100%;
	text-align: center;
	font-size: 8rem;
	font-weight: bold;
	text-shadow: rgba(0, 0, 0, 0.212) 0 10px 40px;
	color: white;
	margin: 0;
}

h3 {
	margin: 0;
	font-size: 2rem;
	color: white;
	opacity: 0.9;
	text-shadow: rgba(0, 0, 0, 0.5) 0 10px 40px;
}

.outer {
	width: 18rem;
}

.repo-btns {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	width: calc(100% - 1rem);
}

.btn {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0.6rem 0.5rem;
	width: 100%;
	color: white;
	text-decoration: none;
	font-weight: bold;
	font-size: 1.5em;
	border-radius: 1.5rem;
	transition: all 0.2s ease-in-out;
	gap: 0.5rem;
	box-shadow: rgba(0, 0, 0, 0.212) 0 10px 40px;
	max-width: 100%;
}

.btn:hover {
	transform: scale(105%);
	filter: brightness(105%);
}

.btn:active {
	transform: scale(95%);
	filter: brightness(95%);
}

.btn p {
	margin: 0;
	text-align: left;
	flex-grow: 1;
}

.icon {
	width: 3rem;
	padding: 5px 10px;
}

#cydia {
	background-color: rgb(163, 102, 72);
}

#sileo {
	background-color: rgb(47, 194, 191);
}

#zebra {
	background-color: rgb(51, 51, 51);
}

#installer {
	background-color: rgb(47, 145, 194);
}

@media screen and (max-width: 425px) {
	.background-glyph {
		opacity: 0.6;
	}
}

@media screen and (max-width: 768px) {
	.outer {
		max-width: 100%;
	}

	.btn p {
		font-size: 90%;
	}

	h1 {
		font-size: 5rem;
	}

	h3 {
		font-size: 2rem;
	}

	body {
		gap: 10%;
	}

	.repo-btns {
		gap: 1rem;
	}

	.icon {
		width: 2rem;
	}
}