h1 {
    /*Text Settings*/
    font-family: avenir-next-world, sans-serif; 
    font-size: 40px;
    color: white;
    
    /*Alignment and Margin*/
    max-width: 500px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding: 5px;
    
    margin-top: 90px;
    margin-bottom: 090px;
    
    /*Background Color*/
    background-color: blue;
    border-radius: 15px;
}

/*Flex-Box Settings and Setup*/

.Ordner {
    width: 80%;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 50px;
}

@media (max-width: 700px) {
  .Ordner {
    flex-direction: column;
      gap: 50px;
  }
}

.box    {
    position: relative;
    flex: 1 1 300px;
    max-width: 400px;
    aspect-ratio: 1 / 1;
    border-radius: 15px;
    transition: 0.5s;
}

.text  {
    
    /*Font style*/
    font-family: avenir-next-world, sans-serif;
    font-size: 25px;
    color: #0d1db1;
    
    
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;     
    transform: translateY(25px);
    transition: 0.8s;
    
}

.box:hover .text {
    opacity: 1; 
    transform: translateY(0);
}

.box:hover img    {
    transform: scale(1.2);
    border-radius: 7.5px;
    opacity: 50%;
    
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: 0.5s;
}

/*Full Screen on Click Function*/

.fullscreen {
  position: fixed;
  inset: 0;
  padding: 40px;
  background: rgba(0, 0,255, 0.8);
  background-blend-mode: multiply;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.fullscreen img {
  max-width: 100vw;
  max-height: 100vh;
  object-fit: contain;
}

.fullscreen:target {
  display: flex;
}

/* Close button */

.fullscreen .close {
  position: fixed;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  text-decoration: none;
}

.fullscreen a {
  font-family: avenir-next-world, sans-serif;
}

/* Header container */

.header {
    align-content: right;
    position: fixed;
    height: 0;
    padding: 0 25px;
    border-radius: 10px;
    margin-top: -45px;
    display: flex;
    align-items: center;
    z-index: 1000;
}

.lines {
  width: 32px;
  cursor: pointer;
  position: relative;
}

.lines span {
  display: block;
  height: 4px;
  background: blue;
  margin: 5px 0;
  transition: 0.3s;
}

.dropdown {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100vw;
  background-color: blue;
  border-radius: 20px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
  z-index: 1001;
}

.dropdown ul {
  list-style: none;
  margin: 0;
  padding: 24px;
}

.dropdown li {
  padding: 8px 0;
}

.dropdown a {
  color: #fff;
    font-family: avenir-next-world, sans-serif;
  text-decoration: none;
  font-size: 20px;
    transition: 0.3s;
}

.dropdown a:hover {
    font-size: 25px;
}

.lines:hover .dropdown {
  max-height: 300px;
}

.lines:hover span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.lines:hover span:nth-child(2) {
  opacity: 0;
}
.lines:hover span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}


/*Footer*/

.footer {
  background: blue;
  color: #ffffff;
  padding: 40px 20px 20px;
  border-radius: 20px;
    margin-top: 50px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-section {
  flex: 1 1 250px;
}

.footer-section h3 {
  font-family: avenir-next-world, sans-serif;
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-section ul {
  font-family: avenir-next-world, sans-serif;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  margin-bottom: 10px;
}

.footer-section a {
  color: white;
  text-decoration: none;
}

.footer-section a:hover {
  color: #00fff8;
}

.footer-bottom {
    font-family: avenir-next-world, sans-serif;
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #ffffff;
}



