/* CSS reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
body {
    margin: 0;
}
a {
	text-decoration: none;
	color: black;
}
html {
	scroll-behavior: smooth;
}
/* End of the reset */

/* Header styling */

.arrow {
	width: 2rem;
	position: fixed;
	right: 1rem;
	top: 90vh;
}

header {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	height: 7rem;
	margin-top: 1rem;
	margin-bottom: 2rem;
}

.logotext, .logotext2, .copyright {
	font-family: forma-djr-deck,sans-serif;
	font-weight: 600;
	font-style: normal;
	text-transform: uppercase;
}

.logotext {
	margin-left: 1em;
	font-size: 1.5em;
}

.logotext2 {
	margin-right: 1em;
	font-size: 1.2em;
}

main {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.single-image-cont {
	margin-bottom: 4rem;
}

.img-desc-holder {
	font-family: forma-djr-deck,sans-serif;
	font-weight: 600;
	font-style: normal;
	text-transform: uppercase;
	text-align: center;
	margin-top: 1rem;
}

.img-holder {
	border: 1px solid grey;
}

.image {
	width: 20rem;
}

.sqr {
	border: none;
}

footer {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 2em;
}

.copyright {
	font-size: 0.7em;
}

/* ALL DESKTOP STYLES */

@media screen and (min-width: 800px) {
	.logotext {
		font-size: 3em;
	}
	.logotext2 {
		font-size: 2em;
	}
	header {
		margin-top: 3rem;
		margin-bottom: 5rem;
	}
	.arrow {
		width: 3em;
		right: 3em;
		top: 90vh;
	}
	.image {
		width: 40rem;
	}
	footer {
		margin-top: 2em;
	}
}