*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
color: rgb(80, 80, 80);
}

body{
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;/* 
    background-color: rgb(80, 80, 175); */
    background-color: rgb(255, 255, 255);
    font-size: 0.9em;
}

.layout{
    background-color: rgb(240, 240, 240);
    margin: 20px;
    padding: 30px 20px 20px 20px;
    width: 1700px;
}

header {
    height: 85px;
    margin-top: 15px;
    background-color: rgb(240, 240, 240);
	text-align: centre
}

.email-link {
	color: blue; /* Linkfarbe */
        text-decoration: none; /* Unterstreichung entfernen */
}



nav{
    height:60px;
    padding-top: 40px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    font-size: 1.2em;
    background-color: rgb(240, 240, 240);
}

/*Text*/

.headlineFontSize {
    text-align: left; 
}
h1 {
    font-size: 2.0em; 
    text-align: left; 
}
h2 {
    font-size: 1.5em;
}
h3 {
    font-size: 1.2em;
	text-align: left; 
}

.linksColor{
    color: rgb(85, 61, 207); 
    font-weight: bold;
  font-style: italic;
}
.linksColor2{
    color: rgb(173, 216, 230);
    font-weight: bold;
  font-style: italic;
}

a:-webkit-any-link {
    text-decoration: none;
}

/* Containers */

.svlogo{
    width: auto;
    height: 80px;
	align: center;
}

.gslogo{
    width: auto;
    height: 80px;
}

.contentBoxLogo{
    display: flex;
    height: 200px;
}

.contactBoxLogo{
    width: 180px;
    height: 45px;
}

.homeLogo{
    width: 60%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}


.contactBoxQr{
height: 85px;
width: 85px;
align-items: center;
}

.contentBox{
    margin: 10px;
    background-color: white;
    width: 550px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contactBox{
    background-color: white;
    width: 550px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Direction Changes/Gaps/Positions */

.flexrow{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.blockClass{
    flex-direction: column;
}

.flexcolumn{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.gapIn{
    padding: 40px;
}

.itemsRight{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/*  */

footer {
    width: 100vw;
    height: 6em;
    display: flex;
    flex-direction: column; /* <-- Ordnet die <span>-Elemente untereinander an */
    justify-content: center; /* Zentriert die Blöcke (vertikal) */
    align-items: center;    /* Zentriert die Blöcke (horizontal) */
    font-size: 1.0em;
    color: rgb(240, 240, 240);
    background-color: rgb(80, 80, 80);
}

/* Der Span-Tag sorgt dafür, dass Mobil und Email in einer Zeile bleiben */

footer span {
    /* Nichts Besonderes nötig, da es Inline-Elemente sind, 
       die nun als Flex-Items in Spaltenrichtung untereinander stehen. */
}

/*Hover*/

a:hover{
    color: black;
    transition: 0.5s;
    background-color: rgb(223, 223, 223);
}

nav a:hover{
    color: rgb(231, 231, 231);
    padding: 5px 20px 5px 20px;
    font-size: 1.15em;
    background-color: rgb(121, 121, 121);
    box-shadow: 0px 15px 20px rgb(70, 70, 70);
}

.contentBox img:hover{
position: relative;
transition: 0.3s;
width: auto;
height: 300px;
}



@media screen and (max-width: 1625px) {
    nav {
        display: flex;
        margin-top: 80px;
    }
    .layout{
        padding-top: 80px;
        width: 1100px;
    }
    .flexrow{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
  }

  @media screen and (max-width: 1070px) {
    nav {
        display: flex;
        flex-direction: column;
        margin-top: 80px;
        margin-bottom: 22px;
    }
    .layout{
        width: 625px;
    }
    .contentBox{
        width: 600px;
    }

  }

























