@font-face {
    font-family: 'Noto Sans';
    src: url('font/NotoSans-Italic.woff2') format('woff2'),
        url('font/NotoSans-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Noto Sans';
    src: url('font/NotoSans-BoldItalic.woff2') format('woff2'),
        url('font/NotoSans-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Noto Sans';
    src: url('font/NotoSans-Bold.woff2') format('woff2'),
        url('font/NotoSans-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Noto Sans';
    src: url('font/NotoSans-Regular.woff2') format('woff2'),
        url('font/NotoSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



html{
	/*background-image: url('/img/test.svg');*/ 
	background-color: #ded7c5;
	background-repeat: no-repeat; 
}
body{
	height: 95%;
}
body{
	display: flex;
	flex-direction: column;
	font-family: "Noto Sans",sans-serif;
	margin: 10px 10% 20px 10%;
}
span.rotate{
	transform: rotate(-180deg);
	writing-mode: vertical-rl;
	font-weight: 800;
	font-size: 140%;
	color: black;
}
span.logo{
	color: #b10000	;
	font-weight: 800;
	font-size: 400%;	
	font-variant: all-petite-caps;
}
nav>span>span{
	vertical-align: sub;
	padding-left: 1em;
}
nav>span>span>a{
	font-weight: 800;
	color: #b10000;
	font-size: 120%;
	font-style: none;
	text-decoration: none;
	font-variant: all-petite-caps
}
span.right{
	float: right;
	vertical-align: middle;
	padding-right: 1em;
}
nav{
	background: #c9c2b3;
	height:30px;
}
article{
	flex: 1 0 auto;
	min-height: 80%;
	height: 80%;	
}
aside{
	padding-top:2em; 
}
.artikelempfehlungen{
	display: inline-flex;
	flex-wrap: wrap; 
}
.heftempfehlungen{
	display: inline-flex;
	flex-wrap: wrap; 
}
.artlinks{
	width: 43%;
	margin: .5em;
	padding: 1.5em;
	border-width: 2px;
	background-color: #c9c2b3;
	border-color: #c9c2b3;
	border-style: dotted;
	align-items: stretch;

}
.va{
	/*background-image: url('/img/bottom.svg');*/
	background-repeat: no-repeat; 
	border-bottom: 3px dotted;
    padding-bottom: 2em;
}
footer{
	flex-shrink: 0;
}
h2{
	font-size: 110%;
}
h1{
	font-size: 140%
}
p { 
	hyphens: auto;
	-moz-hyphens: auto;
	-o-hyphens: auto;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
	line-height: 1.4;
   
}
.artlinks img {
    max-width: 45%;
    height: auto;
    margin: 0 1.5em .75em 0;
    float: left;
}
.gs{
	font-variant: small-caps;
	font-family: times, "Times New Roman", serif;
}

#menu-btn {
	visibility: hidden;
}

@media only screen and (max-width: 1220px) and (min-width: 860px) {
  body{
    font-size: 1em;
    }
  .artlinks{
		width: 100%;
  }
  .artlinks img {
    max-width: 20%;
  }
}
@media only screen and (max-width: 860px) {
 	body{
		font-size: 1rem;
  	}
	.artlinks{
    width: 100%;
	}
  .left span, .right span {
    line-height: unset;
 	  display: block;

	}
	header {
    display: grid;
    grid-template-areas:
       "title   title   hamburger"
       "nav     nav     nav";
  }
  
  
  .menu ~ a {
    text-decoration: none;
    color: black;
  }

  .menu-btn {
    display: none;
  }

  .menu-icon {
    grid-area: hamburger;
    cursor: pointer;
    display: flex;
    justify-content: flex-end;
    align-items: baseline;
    padding: 30px 20px 30px 0;
    position: relative;
    user-select: none;
    visibility: visible;
  }

  .navicon {
    background: #333;
    display: block;
    height: 2px;
    width: 18px;
    position: relative;
  }

  .navicon:before {
    top: 5px;
  }

  .navicon:after {
    top: -5px;
  }

  .navicon:before, .navicon:after {
    background: #333;
    display: block;
    width: 100%;
    height: 100%;
    content: '';
    position: absolute;
    transition: all .2s ease-out;
  }

  .menu {
    grid-area: nav;
    max-width: unset;
    max-height: 0;
    transition: max-height .2s ease-out;
    overflow: hidden;
    margin: 0;
    padding: 0;
    background-color: #fff;
    display: flex;
    flex-direction: column;
  }

  .menu ~ a {
    padding: 20px 20px;
    border-right: 1px solid #f4f4f4;
    background-color: #eee;
    width: 100%;
    text-align: center;
  }

  .menu-btn:checked ~ .menu {
    max-height: 440px;
    min-height: 120px;
  }

  .menu-btn:checked ~ .menu-icon .navicon {
    background: transparent;
  }

  .menu-btn:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg);
  }

  .menu-btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
  }

  .menu-btn:checked ~ .menu-icon .navicon:before,
  .menu-btn:checked ~ .menu-icon .navicon:after {
    top: 0;
  }
}