@charset "UTF-8";

/* ----- GLOBAL ----- */

* {
	box-sizing: border-box;
	font-family: Mont, sans-serif;
	margin: 0;
	padding: 0;
}

#wrapper {
	width: 100vw;
	height: 100vh;
}

/* ----- TYPOGRAPHY ----- */

@font-face {
	font-family: Mont;
	src: url("Resources/Mont/Mont-Hairline.ttf");
	font-weight: 100;
}

@font-face {
	font-family: Mont;
	src: url("Resources/Mont/Mont-ExtraLight.ttf");
	font-weight: 200;
}

@font-face {
	font-family: Mont;
	src: url("Resources/Mont/Mont-Light.ttf");
	font-weight: 300;
}

@font-face {
	font-family: Mont;
	src: url("Resources/Mont/Mont-Regular.ttf");
	font-weight: 400;
}

@font-face {
	font-family: Mont;
	src: url("Resources/Mont/Mont-Book.ttf");
	font-weight: 500;
}

@font-face {
	font-family: Mont;
	src: url("Resources/Mont/Mont-SemiBold.ttf");
	font-weight: 600;
}

@font-face {
	font-family: Mont;
	src: url("Resources/Mont/Mont-Bold.ttf");
	font-weight: 700;
}

@font-face {
	font-family: Mont;
	src: url("Resources/Mont/Mont-Black.ttf");
	font-weight: 800;
}

@font-face {
	font-family: Mont;
	src: url("Resources/Mont/Mont-Heavy.ttf");
	font-weight: 900;
}

h1 {
	font-size: 3rem;
	font-weight: 700;
	line-height: 2.5rem;
}

/* ----- GLOBAL BUTTON STYLES ----- */

.returnBtn {
	align-items: center;
	border: 1px solid black;
	color: black;
	display: inline-flex;
	font-weight: 600;
	gap: 1rem;
	padding: 1rem 2rem;
	text-decoration: none;
	transition: all 0.2s ease-in-out;
}

.returnBtn svg {height: 1rem;}
.returnBtn svg path {fill: black; transition: all 0.2s ease-in-out;}

.returnBtn p {color: black; transition: all 0.2s ease-in-out;}

.returnBtn:hover {background-color: black;}
.returnBtn:hover svg path {fill: white;}
.returnBtn:hover p {color: white;}

.downloadBtn {
	align-items: center;
	background-color: rgb(254,171,3);
	column-gap: 0.5rem;
	color: black;
	cursor: pointer;
	display: flex;
	font-size: 1.2rem;
	font-weight: 600;
	justify-content: center;
	padding: 1rem 2rem;
	text-align: center;
	transition: all 0.1s ease-in-out;
}

.downloadBtn svg {height: 1.2rem;}
.downloadBtn svg path {fill: black;}

.downloadBtn p {color: black;}

.downloadBtn:hover {background-color: rgb(240,155,0)}

/* ------ CONTENT ----- */

#content {
	width: 100%;
	padding: 0 4rem 4rem 4rem;
	height: 100%;
	overflow-y: hidden;
	overflow-y: scroll;
}

#content #return {
	align-items: center;
	background-color: black;
	display: flex;
	height: 3rem;
	justify-content: center;
	transform: translateX(-4rem);
	width: calc(100% + 8rem);
}

#content #return p {
	color: white;
	font-weight: 500;
}

#content #return a {
	border-bottom: 1px solid white;
	color: inherit;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.2s ease-in-out;
}

#content #return a:hover {opacity: 75%;}

#content #logo-title {
	margin-bottom: 2rem;
	text-align: center;
	width: 100%;
}

#content #logo-title img {
	margin-top: 4rem;
	width: 100%;
	max-width: 1080px;
}

#wallpapers {
	gap: 2rem;
	display: flex;
	flex-wrap: wrap;
}

#wallpapers .wallpaper {
	background-color: rgb(245,245,245);
	border-radius: 1rem;
	overflow: hidden;
	position: relative;
	transition: all 0.2s ease-in-out;
	width: calc((100% - 8rem) / 6);
}

#wallpapers .wallpaper:hover {
	box-shadow: 0 0 1rem 0 rgba(0,0,0,.2);
}

#wallpapers .wallpaper .overlay {
	align-items: flex-end;
	aspect-ratio: 9 / 16;
	content: '';
	display: flex;
	background: linear-gradient(to bottom, rgba(0,0,0,0) 75%, rgba(0,0,0,0.9) 100%);
	position: absolute;
	width: 100%;
}

#wallpapers .wallpaper img {
	aspect-ratio: 9 / 16;
	background-color: black;
	display: block;
	width: 100%;
}

#wallpapers .wallpaperTitle {
	color: white;
	font-size: 2rem;
	font-weight: 700;
	line-height: 2.25rem;
	padding: 2rem;
}

/* ----- MEDIA QUERIES ----- */

@media screen and (max-width: 1920px) {
	#wallpapers .wallpaper {width: calc((100% - 6rem) / 4);}
}

@media screen and (max-width: 1080px) {
	#wallpapers .wallpaper {width: calc((100% - 3rem) / 3) !important;}
}