@import "./reset.css";
@import url('https://fonts.googleapis.com/css2?family=Cascadia+Code:ital,wght@0,200..700;1,200..700&display=swap');

:root {
	box-sizing: border-box;

	--max-width: 800px;
	--clr-1: #02010a;
	--clr-2: #04052e;
	--clr-3: #140152;
	--clr-4: #22007c;
	--clr-5: #0d00a4;
}

* {
	box-sizing: inherit;
}

html, body {
	height: 100%;
}
html {
	background: var(--clr-1)
}
body {
	color: white;
	font-family: "Cascadia Code";
	font-size: 1.5rem;
}

@media (orientation: portrait) {
	:root {
		--max-width: 80%;
		font-size: 30px;
	}
}
.main-wrapper.art {
	align-items: flex-start;
}

.main-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 2rem .25rem;
	height: 100%;
}

main {
	display: flex;
	flex-direction: column;
}

h1 {
	font-size: 2.5rem;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: .25rem;
}

img {
	border-radius: .25rem;
}

.main-nav {
	display: flex;
	justify-content: space-between;
	flex-warp: true;
}

.hover {
	cursor: pointer;
	opacity: 50%;
	transition-duration: 200ms;
}

.hover:hover {
	opacity: 100%;
}

.forgot {
	max-width: 25rem;
	width: 100%;
	aspect-ratio: 1/1;
}

a:link {
	color: inherit;
}
a:visited {
	color: inherit;
}
a {
	cursor: pointer;
	text-decoration: none;
}

.contact-links {
	margin-top: .75rem;
	display: flex;
	flex-direction: column;
	gap: .25rem;
}

.contact-links a {
	display: flex;
	align-items: center;

	gap: .5rem;
}

.contact-links img {
	width: 2rem;
	height: 2rem;
}

.art-list {
	margin-top: .75rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: .5rem;
}

.art-list img {
	max-width: 15rem;
	width: 100%;
	aspect-ratio: 1/1;
	object-fit: cover;
}

.about {
	margin-top: .75rem;
}
