body{
  font-family: Century Gothic,CenturyGothic,AppleGothic,sans-serif;
  width: 100%;
  height: 100vh;
  
}
* {
  box-sizing: border-box;
}

main{
  padding: 20px ;
  margin-top: 10%;
} 


footer{
  padding: 20px;
  background-color:#faf9ea;
  font-size: smaller;
  border-top: double;
}

/*Logo*/
#logo {
  float: left; 
  width: 15%;
  height: 15%;
}

/*Menu responsive*/
.topnav {
  z-index:1;
  background-color: #faf9ea;
  font-weight: bolder;
  position: fixed;
  top: 0;
  border-bottom: double;
}
.topnav a {
  float: left;
  display: block;
  color: #080000;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 20px;
}
.topnav a:hover {
  background-color: rgb(233, 224, 224);
  color: black;
}
.topnav a.active {
  background-color: #f7e70896;
  color:#082222;
}



.half{
  width: 45%;
	margin-right: 2%;
  display: inline-block;
}

/* Projektübersicht tabelle*/
table{
  font-size: medium;
  line-height: 30px;
  width: 90%;
  margin: auto; 
}
th, td{
  border: 1px solid #ccc55ede; 
font-size: 120%; 
}
th{
  background-color: #f5f0a696;
 font-weight: bold;
  color: #082222;
  border-radius: 5px 5px 0px 0px;
}
th:nth-of-type(1){
  padding-left: 10px;
  text-align: left;
}
td{
  background-color: #f3f2e5c0;
  padding-left: 10px;
  text-align: center;
  color: rgb(1, 8, 1);
  border-radius: 2px 2px 2px 2px;
}
td:nth-of-type(1){
  text-align: left;
}
tr:not(:first-child){
  opacity: 0.7;
}
tr:hover{
  opacity: 1;
}

.project{
  margin-bottom: 10px;
  margin-top: 10px;
  padding: 10px;
  border-style: ridge;
}

/* Image gallery */
  /* The grid: five equal columns that floats next to each other */
.column {
  float: left;
  width: 25%;
  padding: 10px;
}
  /* Style the images inside the grid */
.column img {
  opacity: 0.8; 
  cursor: pointer; 
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  
}
.column img:hover {
  opacity: 1;
}
  /* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
  
}
  /* The expanding image container */
  .container, .container2, .container3 {
    position: relative;
    margin: auto;
    display: none;
    width: 90%; 
}
  /* Expanding image text */
#imgtext {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: white;
  font-size: 20px;
}
  /* Closable button inside the expanded image */
.closebtn {
  position: absolute;
  top: 10px;
  right: 15px;
  color: white;
  font-size: 35px;
  cursor: pointer;
}

#qrcode {
  width: 15%;
}


