/*page set up*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*Reset*/
*,
*::after,
*::before {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

input,
button,
textarea {
	font: inherit;
}

img {
	display: block;
	max-width: 75%;
	height: auto;
	margin-left: auto;
	margin-right: auto;
	border-radius: 10px;
	border: 3px solid #89A8B3;
}

/*Varables*/
:root {
	font-family: "Montserrat", sans-serif;
	font-size: clamp(1rem, 2.2vh, 1.5rem);
}

/* Utility classes*/
.nowrap {
	white-space: nowrap;
}

html {
	scroll-behavior: smooth;
	background-color: black;
	background-image: url(../images/papyrus-dark.png);
	background-attachment: fixed;
}

.center {
	text-align: center;
}

/* bg via Toptal Subtle Patterns */

body {
	font: 1.5rem "Montserrat", sans-serif;
	margin: 0 auto;
	min-height: 100vh;
	max-width: 100%;
}

/*font*/
title,
h1,
h2 {
	margin-bottom: 1em;
	color: #A8B39C;
}

.title {
	font-size: 3.5em;
	font-weight: bold;
	margin: .25em 0;
}

h1 {
	text-align: center;
}

p {
	line-height: 1.5;
	color: #89A8B3;
	font-size: 16pt;
	text-align: left;
	padding: 0 24px 24px 24px;
}

figcaption {
	margin: 24px 0 24px 0;
	font-size: 16pt;
	color: #89A8B3;
	text-align: center;
}

a:any-link {
	color: #AD99B2;
	text-decoration: none;
	font-weight: 500;
}

a:visited {
	color: #9FB389;
	text-decoration: none;
}

a:hover,
a:focus-visible {
	text-decoration: underline;
}

/*Header*/

header {
	position: sticky;
	top: 0;
	z-index: 1;
	border-bottom: 1px solid #5A5951;
	background-color: #020202;
	overflow: hidden;
	width: auto;
}

.header_nav {
	font-weight: bold;
	padding: 0.30em 2.5%;
}

.header a{
	float: left;
	display: inline;
	text-align: center;
	padding: 5px 8px;
}

.header_ul {
	float: right;
}

/*Hero*/
.hero {
	position: relative;
	padding: 0.50em 0.5em;
}

/*Footer*/
.footer {
	position: sticky;
	bottom: 0;
	background-color: #020202;
	padding: 0.25em 1.5%;
}

.footer p {
	font-size: 9pt;
	padding: 0;
	text-align: center;
	color:#9FB389;
}

/*Main*/

.main {
	padding: 0.25em 0;
}

.main_article {
	scroll-margin-top: 6.5rem;
	margin: 1em .2em;
}

.main_article:first-child {
	margin-top: 1em;
}

.main_article:last-child {
	min-height: calc(100vh-20rem);
}

#about .about-pg {
	text-decoration: underline;
}

/*media screens*/
@media screen and (min-width: 576px) {}

/*media screen mobile landscape*/
@media only screen and (max-height : 400px) and (min-aspect-ratio: 7/4) {}

/*for tablets*/
@media screen and (min-width : 768px) {
.bio {
	justify-content: center;
}

.words {
	min-width: 600px;
}
.pic{
	min-width: 400px;
	font-weight: bold;
	justify-content: center;
}
}

/*for desktop*/
@media screen and (min-width : 992px) {
body{
	width: 100%;
}

/*page set up*/
.about{
	display: inline;
	justify-content: center;
}

.bio{
	display: flex;
}

.words p{
	max-width: 800px;
}

.vinyl{
	display: flex;
	flex-wrap: nowrap;
	column-gap: 10rem;
	margin: 72px 40px;
	align-items: center;
	justify-content: center;
}

.got h1{
	font-size: 4rem;
	max-width: 20px;
	font-weight: 500;
	float: right;
}
.vphoto{
	max-width: 800px;
}
}