/* 
Theme Name:		 BlankSlate-Child
Theme URI:		 http://childtheme-generator.com/
Description:	 BlankSlate-Child is a child theme of BlankSlate, created by ChildTheme-Generator.com
Author:			 Robin Stripling
Author URI:		 https://artigbleiben.de/
Template:		 blankslate
Version:		 1.0.0
Text Domain:	 blankslate-child
*/

/* Fonts */
@font-face {
  font-family: 'Comfortaa';
  src: url('fonts/Comfortaa-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Comfortaa';
  src: url('fonts/Comfortaa-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Comfortaa';
  src: url('fonts/Comfortaa-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Bodoni';
  src: url('fonts/BodoniflfRoman-vmAD.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Bodoni';
  src: url('fonts/BodoniflfBold-MVZx.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Bodoni';
  src: url('fonts/BodoniflfItalic-2OEw.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Bodoni';
  src: url('fonts/BodoniflfBolditalic-K7dD.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
}

/* General Reset */
::-moz-selection {
  background: #000;
  color: #fff;
}

::selection {
  background: #000;
  color: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-transform: lowercase;
  hyphens: auto;
}

html, body {
  font-size: 16px;
  color: #272727;
  background-color: #fff;
  width: 100%;
  height: 100%;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Full-Screen Content */
html, body, #wrapper {
  height: 100%;
  width: 100%;
  flex-direction: column;
}

body {
  margin: 0;
  font-family: 'Comfortaa', sans-serif;
  background: #fff;
  color: #272727;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: crosshair;
  justify-content: center;
}

body > article {
  margin: 0 auto;
  padding: 0 10%;
}

a {
  color: #000;
  text-decoration: none;
  position: relative;
  border-top: 6px solid transparent;
  border-bottom: 6px dotted transparent;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}

.entry-content .wp-block-image:first-of-type img {
  margin: 0 0 10px 0;
  filter: grayscale(0%);
}

img {
  filter: grayscale(100%);
  transition: filter 0.5s ease;
	padding: 5px;
}

img:hover {
  filter: grayscale(0%);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: #000;
  font-weight: bold;
  margin-bottom: 20px;
}

h1 {
  font-size: 80px;
  line-height: 65px;
}

@media screen and (max-width: 560px) {
	h1 {
	  font-size: 30px;
	  line-height: 35px;
	  font-weight: 700;
	}
}
.entry-title {
  margin-bottom: 40px;
}

h2 {
  font-size: 65px;
  line-height: 70px;
  font-family: Bodoni;
  font-style: italic;
  font-weight: 700;
}
@media screen and (max-width: 560px) {
	h2 {
	  font-size: 40px;
  	  line-height: 45px;
	}
}

h3 {
  font-size: 40px;
  line-height: 45px;
}
@media screen and (max-width: 480px) {
	h3 {
	  font-size: 30px;
	  line-height: 35px;
	}
}

h4 {
  font-size: 30px;
  line-height: 35px;
}
@media screen and (max-width: 480px) {
	h4 {
	  font-size: 20px;
	  line-height: 25px;
	}
}

h5 {
  font-size: 20px;
  line-height: 25px;
}
@media screen and (max-width: 480px) {
	h5 {
	  font-size: 18px;
	  line-height: 23px;
	}
}

h6 {
  font-size: 15px;
  line-height: 20px;
}

p {
  font-size: 15px;
  margin: 0 0 15px 0;
}

strong, b {
  font-size: 15px;
  color: #000;
  font-weight: 700;
}

code {
  font-family: Courier New, monospace;
  font-style: normal;
  font-weight: 400;
}

h2 code {
  font-family: Courier New, monospace !important;
  font-style: normal !important;
}

/* Custom */
.header {
  margin: 60px 0 0 0;
}

.header img {
  max-width: 150px;
  height: auto;
}

.projects {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1000px;
  padding: 20px;
}

.project {
  width: 200px;
}

.project img {
  width: 100%;
  height: auto;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Footer */
#footer .widget li {
	padding: 0 0 6px 0;
}

.footer-navigation {
	font-size: 10px;
    text-align: center;
    margin-top: 20px;
}

.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    display: inline-block;
    margin: 0 10px;
}

.footer-menu a {
    color: #727272;
    text-decoration: none;
	padding: 10px 0;
}