* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'Open Sans', serif;
	font-weight: 300;
}

body {
	background-color: #093844;
	color: #fff;
}

img {
	margin: 0 auto;
	width: 100%;
}

h1 {
	font-size: 1rem;
	text-align: center;
	font-weight: 400;
}

.container {
	display: flex;
	flex-direction: column;
	max-width: 30rem;
	margin: 0 auto;
	gap: 2rem;
	min-height: 100dvh;
	padding: 2rem;
	justify-content: center;
}

.link-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

a {
	display: block;
	background: #00000010;
	padding: 1rem;
	color: #fff;
	text-decoration: none;
	transition: transform 200ms, background-color 200ms;
	border-radius: 0.5rem;

	&:hover {
		text-decoration: none;
		transform: scale(1.05) rotate(-1deg);
		background: #00000030;
	}
}

a:first-letter {
	text-transform: uppercase !important;
}

@media (min-width: 22rem) {
	img {
		width: 18.2rem;
	}
}

@media (min-width: 36rem) {
	h1 {
		font-size: 1.8rem;
	}

	body {
		font-size: 1.5rem;
	}
}

@media (min-width: 60rem) {
	.container {
		width: 57rem;
		max-width: unset;
	}

	.link-list {
		align-items: center;
	}

	.link-list:has(> :nth-child(9)) {
		flex-direction: row;
		flex-wrap: wrap;
	}

	a {
		width: 26rem;
	}
}
