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



/* ------------allgemein------------ */

body {
	background-color:white;
    color: #5D5D5D;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    margin-top: 0px;
    margin-right: 150px;
    margin-left: 150px;
}

/*---------------------HEADER---------------------*/

header{
    display:grid;
    grid-template-columns: 1fr 1fr;
    width:100%;
    font-size: 22px;
    font-weight: 500;
    color: #5D5D5D;
}

/*---------------------name---------------------*/

.name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 40px;
    color: #5D5D5D;
}

.name a:visited{
  text-decoration: none;
  color:#80aa9e; 
}

.name a:hover {
    text-decoration: none;
    color: #80aa9e;
}

.name a:link{
    text-decoration: none;
    color:#80aa9e;   
}


/*---------------------navigation---------------------*/


nav ul{
    display: flex;
    list-style-type: none;
    justify-content: flex-end;
}


nav ul li{
    margin-right: 50px;
    margin-top: 24px;
}

nav ul li:last-child{
    margin-right: 0px;
}


nav ul li a:visited{
  text-decoration: none;
  color:#5D5D5D;
}


nav ul li a:hover {
  text-decoration: none;
  color: #80aa9e;
}


nav ul li a:link{
    text-decoration: none;
    color:#5D5D5D;}


/*---------------------MAIN---------------------*/


main{
    font-size: 20px;
    width:100%;
    margin: auto;  
}

p {
  margin-top: -5px;
}


/*---------------------COOKIE-BOX---------------------*/

.cookie-banner {
  background-color: #5D5D5D;
  bottom: 0;
  color: #ffffff;
  display: none;
  font-size: 16px;
  left: 0;
  position: fixed;
  right: 0;
  z-index: 9999;
}
  
  .cookie-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    }
    
  .cookie-message {
  margin: 7px 0 7px 150px;
  }
  
.cookie-message a {
  text-decoration: underline;
  color: #ffffff;
  }

.cookie-message a:visited{
  color:#ffffff;
}

  .cookie-message a:hover {
  color: #80aa9e;
}


  .cookie-message  a:link{
  color:#ffffff;
}

  
  .close-cookie-consent {
    background-color: #ffffff;
    color: #ffffff;
    border-radius: 3px;
    display: block;
    padding: 5px;
    margin: 10px 150px 0 0;
    text-decoration: none;
  }


/*---------------------startbild---------------------*/

img{
    width: 100%;
}

/*---------------------work---------------------*/


main {
  width: 100%;
}

/* clearfix */
.grid:after {
  content: "";
  display: block;
  clear: both;
}

/* clearfix */
.grid:before {
  content: "";
  display: block;
  clear: both;
}

.grid {
  margin: 0 -40px 0 -15px;
}


/* ---- grid-item ---- */

.grid-sizer,
.grid-item {
  /*
    die Prozent-Angaben legen fest,
    wie viele Spalten das Layout hat
    Hier: 3-spaltig
    */
  width: 31.5%;
  height: auto;
  float: left;
  margin: 0 0 1% 1%;
}

.grid-item:hover {
  opacity: 0.8;
}


/*---------------------about---------------------*/

.about {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    grid-gap: 1.5em;
}

.abouttext {
  grid-column: 5 / span 5;
}

.aboutbild {
  grid-column: 1 / span 4;
  margin-top: 0px;
}

a:visited{
  text-decoration: underline;
  color:#5D5D5D; 
}

  
a:hover {
  text-decoration: underline;
  color:#5D5D5D;
}

a:link{
  text-decoration: underline;
  color:#5D5D5D;
}



/*---------------------projekte---------------------*/

.projekt {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    grid-gap: 20px;
}

.projekttext {
  grid-column: 5 / span 5;
}

.projektbild {
    grid-column: 1 / span 4;
}


/*---------------------impressum---------------------*/

.impressumtext{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    font-size: 20px;
    grid-gap: 20px;
}

.impressumtextlinks {
  grid-column: 1 / span 1;
}

.impressumtextmitte {
  grid-column: 2 / span 1;
}

.impressumtextrechts {
  grid-column: 3 / span 1;
}

/*---------------------footer---------------------*/

.impressum {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 500;
    text-align: right;
    text-decoration: none;
    width: auto;
    margin-top: 30px;
    color:#5D5D5D;
  }

.impressum a:visited{
  text-decoration: none;
  color:#5D5D5D;
}


.impressum a:hover {
  text-decoration: none;
  color: #80aa9e;
}


.impressum a:link{
    text-decoration: none;
    color:#5D5D5D;
}











