/*css reset soft*/

* {
	margin: 0;
	padding: 0;
	border: 0; /* Setzt margin, padding und border für alle Elemnte auf 0 */
	box-sizing: border-box;  /* box-sizing wird auf border-box geändert, damit padding und border in die Gesamtgröße eines Elements mit eingerechnet werden */
  }
  
  img, video {
	max-width: 100%; /* Verhindert das Bilder usw. über übergeordnete Elemente hinaus gehen*/
	height: auto; /* So wird das Seitenverhältnis festgelegt */
  }
  
  ul, ol {
	list-style: none; /* 
  Entfernt die Listensymbole bei ungeordneten und geordneten Listen, so können hier eigene Sytle verwendet werden
  */
  }
  
  a {
	text-decoration: none; /* 
  Setzt die Standardstile von Links zurück und entfernt die Unterstreichung.
  */
  }
  
  html {
	line-height: 1.5; /* 1 */
	-webkit-text-size-adjust: 100%; /* 2 */
  /**
   * 1. Correct the line height in all browsers.
   * 2. Prevent adjustments of font size after orientation changes in iOS.
   */
  }
  
  small {
	font-size: 80%;
  /**
   * Add the correct font size in all browsers.
   */
  }
   /*css reset soft end*/
  
  body {
	  max-width: 900px;
	  margin: 0 auto;
	  font-family:sans-serif;
    background-color:white;
	   }

/* main style */
  main {
    background-color:lightgray;
    border-radius:10px;
    padding: 10px;
    margin:15px;
    }
    
    h1 {
    text-align:center;
    color:black;
    }
    
    .info {
    text-align:center;
    color:black;
    font-style: italic;
    }
    
    .header{
    display:flex;
    flex-direction:row;
    justify-content:space-evenly;
    }
    
    .Space {
    background-color:black;
    margin:15px;
    padding: 1px;
    border-radius: 10px;
    }

    @media (max-width: 600px) {
    .text {
      width: 95%; /* Größere Breite auf kleineren Bildschirmen */
      max-width: none; /* Falls max-width das Problem verursacht */
      line-height: 1.2;
    }
    }

    h4 {
    margin-top: 30px;
    margin-bottom:15px;
    font-style: italic;
    color: black;
    }

    .text {
    text-align: left;
    max-width: 800px; /* Begrenzung der Breite */
    width: 80%; /* Anpassung an verschiedene Bildschirmgrößen */
    margin: 0 auto; /* Zentrierung */
    color: black;
    }

    .REFLECTION { 
      margin-top: 20px;
      margin-bottom: 20px;
    }
 /* main style ends */

 /* footer style */
  .footer {
    display: flex;
    justify-content: center; 
    align-items: center;   
    
  }
  
  .me {
    max-width: 60px; 
    height: auto;  
  }
  /* footer style ends */


  
  @media(max-width: 600px) {
	  body {
		  width: auto;
	  }
   
  }


.back-link {
  position: fixed;
  top: 15%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1000;
}

.back-button {
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 0 12px 12px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s ease;
}

.back-button svg {
  color: black;
  width: 20px;
  height: 20px;
}

.back-button:hover {
  transform: translateX(3px);
}
