/*changes site title*/


.site-title a{
	font-size: 2rem;
	color: #000000;
	font-weight: 900;
}

.site-title a:hover{
	color: #cccccc;
	font-weight: 800;
}


.site-title a {
	transition: color 0.3s ease, background-color 1s linear, opacity 1s linear;
}

/*makes post title thinner*/
.post-title {
	font-weight: 700;
	font-size: 4rem;
	color: black;
}

.entry-content h2, h3, h4, h5, h6{
	font-weight: 400;
	
	color: black;
}

/*makes body text bigger*/
.entry-content p {
	font-size: xxxrem;
	color: black;
	font-weight: xxx;
}


/*changes font*/

body {
	font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}


/*does all the link colouring shit*/

.header-inner-top a{
	color: #000000;
	text-decoration: none;
	font-size: xxxrem;
	font-weight: ;
}

.header-inner-top a:hover{
	color: #000000;
	background-color: #eeeeee;
	text-decoration: none;
}

.header-inner-top a:focus{
	color: #000000;
	background-color: #dddddd;
	text-decoration: none;
}
.site-nav a:hover,
.site-nav .current-menu-item > a {
	text-decoration: none;
}

.site-nav a:active,
.site-nav .current-menu-item > a {
	color:#000000;
	background-color: #dddddd;
}



/*makes post preview title white and stops hover colour*/


.preview-title {
color: #000000;
font-size: 2rem;
margin-bottom: rem;
font-weight: 200;
}

.preview-title a:hover {
color: #000000;
}

/*optional: completely removes title from posts on the main page, thereby making them display as just photos*/

div.preview-inner {
	display:;
}



/*increases width of text area on posts and pages*/

.post-inner {
	max-width: 80%;
}




/*removes box shadow and changes preview box colour*/

.single-container {
	box-shadow: none;
	}

.preview-wrapper {
	background: #000000;
	border-radius: 0rem;
box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
	overflow: hidden;
	position: relative;
}

/*removes anders noren*/

p.credits {
	display: none;
}


/*removes featured photo from posts*/

div.featured-media {
	display: none;
}


/*removes comment section*/

div.comments-wrapper {
	display: none;
}

nav.pagination-single {
	display: none;
}


/*removes slideshow indicator section*/
div.wp-block-jetpack-slideshow_pagination {
	display: none;
}


/*sets maximum size and preserves aspect ratio of featured images in posts*/

.featured-media img {
	width: 100%;
	max-width: 560px;
	max-height: 560px;
	width: auto;
	display: block;
  margin-left: auto;
  margin-right: auto;

}

/*makes images on archive page black and white (set to 100% for full black and white)*/

.preview-image img {
-webkit-filter: grayscale(0%);

}

/*lines up width of text and featured image... has to be 560 for them to line up*/


/*removes little meta icons*/

.post-meta .meta-icon {
	display: none ;
}


/*adds background and hover effect to tags*/

.meta-wrapper a{
	color: #ffffff;
	background-color: #000000;
}

.meta-wrapper a:hover{
	color: #ffffff;
	background-color: #000000;
	text-decoration: none;
}


/*makes archive headers and background grey and lowercase*/


.archive-header .preview-wrapper {
		background: #000000;
	  text-transform: lowercase;
	}

.preview-inner h3 {
	color: #000000;
	font-size: rem;
	padding-left: rem;
	padding-top: 7rem;
}

div.preview-inner h6 {
  display: none;
	color: #000000;
	font-size: ;
}

/*makes related post title grey and lowercase*/

.related-posts-title {
	color: #000000;
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 2rem;
	text-transform: lowercase;
}

/*makes post titles small*/

.post-title {
	color: #000000;
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 2rem;
	text-transform: ;
}


/*changes horrible colour of comment submit button*/


button,
.faux-button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	background: #000000;
	text-transform: lowercase;
	
}


/*changes horrible colour of comment reply title and labels and makes lowercase*/



.comment-reply-title {
	text-transform: lowercase;
	color: #000000;
}

.comment-form label{
	text-transform: lowercase;
	color: #000000;
}


.comment label{
	color: black;
}


.comment-form p.logged-in-as {
	color: #000000;
	text-transform: uppercase;

}

.comment-respond .logged-in-as a {
	color: #000000;
	text-decoration: none;
}

.comment-respond .logged-in-as a:hover {
	color: #000000;
	text-decoration: none;
}

.comment-respond .logged-in-as a:focus {
	color: #000000;
	text-decoration: none;
}

/*transition shit for menu */
a {
	transition: color 0.0s linear, background-color 0.0s linear, opacity 1.0s linear;
}


/*make arrow circles into squares*/

.pagination-single .arrow {
	align-items: center;
	background: #ffffff;
	border-radius: 0%;
	display: flex;
	flex-shrink: 0;
	height: 2.6rem;
	justify-content: center;
	margin-right: 1.5rem;
	transition: background-color .15s linear;
	width: 2.6rem;
}


/* changes date colour at bottom of post */
.post-date a{
	font-size: xxxrem;
	color: #000000;
	font-weight: 100; 
}

/* changes date colour on post preview */
.post-meta-preview a{
	font-size: xxxrem;
	color: #ffffff;
	font-weight: 100; 
}


/* changes next and previous text */
.pagination-single a{
	font-size: xxxrem;
	color: #000000;
	font-weight: 100; 
}

/* removes bullet points from lists (relevant for the categories page) */

ul {
  list-style-type: none;
}


/* lines up category list with title on archive page */

ul.wp-block-categories-list {
	padding: 0px;
	margin: 0px;
}

/* removes padding from top of tagline (underneath main site title top left)*/

p.site-description {
   margin: 0px;
   padding: 0px;
}

/* makes posts and images slightly closer to the top*/

div.post-inner.section-inner {
	padding-top: 6.5rem;
}


/*creates the polaroid effect (requires dark mode)*/

div.preview-wrapper {
	
	padding-top: 20px;
	padding-left: 20px;
	padding-right: 20px;
	background-color:white;
}

/*makes category title white*/
div.preview-wrapper.bg-color-black.color-gray {
	background-color: white ;
	height: 300px;
}


/*makes background of post content match background colour you choose in settings (must be filled in manually)*/

article.single-container {
	background-color: #f9f9f9;
}