@import "root.css";

.container {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	width: min(100% - 64px, var(--max-width));
	margin: 24px auto;
}

.header {
	display: grid;
	width: 100%;
}

.header__photo,
.header h1 {
	justify-self: center;
}

.header__menu {
	display: grid;
	justify-content: space-between;
	grid-auto-flow: column;
	border-bottom: 0.5px solid rgba(32, 38, 61, 0.3);
	padding-bottom: 12px;
}

.header__menu p {
	font-size: 26px;
}

.header__photo {
	display: grid;
	justify-content: center;
	margin: 40px 0;
}

.header__photo img {
	width: 256px;
	height: 256px;
	border-radius: 16px;
	box-shadow:
		0 67px 116px rgba(0, 0, 0, 0.06),
		0 13px 18px rgba(0, 0, 0, 0.13),
		0 3px 7px rgba(0, 0, 0, 0.2),
		0 32px 50px rgba(0, 0, 0, 0.1);
}

.apps {
	display: grid;
	width: 100%;
	max-width: var(--max-width);
}

.content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(360px, 100%), 1fr));
	gap: 20px;
	width: 100%;
}

.app {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 48px;
	padding: 32px;
	border-radius: 16px;
	background: var(--background-app);
}

.app__hub {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.app__title {
	display: grid;
	align-content: center;
	gap: 12px;
}

.app__icon {
	width: 80px;
	height: 80px;
}

.app__icon-title {
	display: flex;
	gap: 16px;
}

.app__name p {
	font-size: 32px;
	font-weight: 500;
}

.app__link p,
.app__link-soon p {
	font-size: 16px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 6px 10px;
	margin: 0;
	border-radius: 20px;
	border: 0.5px solid var(--color-link);
	display: inline;
}

.app__link,
.app__link-soon {
	display: flex;
}

.app__link-soon,
.app__link-soon p {
	color: #20263d70;
	border-color: #20263d70;
}

.app__description p {
	font-size: 26px;
	max-width: 100%;
}

.app__description a {
	color: var(--color-text);
	border-bottom: 0.5px solid var(--color-text);
}

.app__os p {
	font-size: 16px;
	color: var(--color-link);
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 1px;
}
