adressbuch/* Style Sheet adressbuchauswahl.html */

@font-face {
	font-family: "Plakat-Fraktur-Black";
	src: url("fonts/Plakat-Fraktur-Black.ttf") format("woff2");
	font-weight: 300
   font-style: normal;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

html { 
   background-color: #f2f2f2;
   font-size: 1.375rem;
	max-height: 100svh;
}

body  {
  background-color: #f2f2f2;
  font-family: Arial, Helvetica, sans-serif;
  margin-left: auto;
  margin-right: auto;
  max-height: 100svh;
  max-width: 100svh;
}
 
 nav {
	background-color: #f2f2f2;
	height: 50px;
	width: 100%;
	}
	
ul li {
	display: inline-block;
	float: right;
	line-height: 50px;
	list-style: none;
}
	
ul li a {
	color: #000000;
	font-size: 22px;
	padding-bottom: 10px;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 10px;
	text-decoration: none;
		}

ul li a:hover {
	font-weight: 700;
}

@media (width <= 800px) 
    {
ul li a {
	text-decoration: none;
	font-size: .8rem;
	color: #000000;
	padding-top: 0;
	padding-bottom: 10px;
    padding-left: 20px;
	padding-right: 20px;
		}
    }


header {
   background-color: #f2f2f2;
	border-bottom: 3px solid black;
   margin-bottom: 40px;
	margin-left: auto;
   margin-right: auto;
   min-height: 140px;
   width: 90%;
      }  

@media (width <= 800px) 
{
header {
	margin-bottom: 20px;
	margin-left: auto;
	margin-right: auto;
	min-height: 100px; 
	width: 80%;
	}
}

img {
	width: 100%;
	height: auto;
}
    
p  {
	font-size: 1rem;
	margin-left: 20px;
	margin-right: 20px
}

@media screen and (max-width: 768px) 
{
p   {
    font-size: .8rem; 
    }
}


.adressbuch-auswahl-titel	{
	display: flex;
	flex-direction: column;
	align-items: center;
	align-content: center;
}

.frakturtext-gross	{
	font-family: Plakat-Fraktur-Black;
	font-size: 3rem;
	margin-top: 20px;
	margin-bottom: 20px;
}

.frakturtext-klein {
	font-family: Plakat-Fraktur-Black;
	font-size: 1.5rem;
	margin-bottom: 10px;
}

.frakturtext-text > p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1rem;
	line-height: 1.2;
	margin-bottom: 10px;
	padding-bottom: 20px;
	padding-top: 20px;
	border-bottom: 2px solid black;
	border-top: 2px solid black;
	}

.adressbuch-auswahl-container {
   align-items: center;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
		}


@media screen and (max-width: 768px) {
.adressbuch-auswahl-container {
	grid-template-columns: 1fr;
    }
 }
	 
.adressbuch-auswahl-seite {
	margin: 10px;
	transition: tranform .4s;
}

.adressbuch-auswahl-seite:hover {
	transform: scale(2.5);
}

@media screen and (max-width: 768px) {
.adressbuch-auswahl-seite:hover {
	transform: scale(1.5);
}
 }

footer {
	position: relative;
	bottom: 0;
	width: 1100px;
	height: 2px;
	background-color: #f2f2f2;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 10px;
}
 
