* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    width: 100%;
    height: 100%;  
    background-color: #5c1641;
    color: white;
    font-family: 'Oswald', sans-serif;
    border: 0;
  }

  /*Header mit Slogan und Navigation*/
  
  header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center; /* Vertikale Ausrichtung der Inhalte */
  border-bottom: 2px solid #e0c2cd;
  padding: 15px 20px 7px 20px;
  }

  .logoslogan {
    display: flex;
    align-items: center;
    grid-column: 1 / 2; /* Container in der ersten Spalte */
  }

  header img {
    height: 50px;
    width: auto;
    margin-right: 1rem;
  }
  
  header h1 {
    font-size: 2rem;
  }

  h1 > a {
    color: #e0c2cd;
  }

  h1 > a:hover {
    text-decoration: none;
  }

  nav {
    grid-column: 3 / 4;
  }

  nav ul {
  list-style: none;
  display: flex;
  }
  
  nav ul li {
    display: inline;
    margin-left: 1.5rem;
    font-size: 1.5rem;
  }

  .nowrap {
    white-space: nowrap;
  }

  a {
    color: #ee0293;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }

  /*Abschnitts-Überschriften*/
  h2 {
    text-align: center;
    font-size: 1.8rem;
    text-transform: uppercase;
    padding: 0rem 0.4rem;
    margin: 4rem 0 2rem 0;
  }

  /*Abschnitt "Intro"*/
  #intro {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .introtext {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  #intro p, #uebermich p {
    width: 60vw;
  }

  #intro h2 {
    text-align: left;
    padding: 0;
    margin-bottom: 2rem;
  }

  #intro img {
    width: auto;
    height: 300px;
    margin: 2rem 2rem 0rem 0rem;
  }
  
  /*Abschnitt "Services*/
  .services {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
  }
  
  .angebot img {
    width: 230px;
    height: auto;
    margin: 1rem 1rem;
  }
  
  .angebot {
    flex: 1 1 calc(33.333% - 20px); /* Drei Boxen nebeneinander */
    padding: 15px;
    text-align: center;
    min-height: 300px;
    min-width: 300px;
    border: 3px solid #e0c2cd;
    border-radius: 10px;
  }
  
  .angebot ul {
    list-style-position: outside;
    list-style-type: disc;
    text-indent: 0em;
    text-align: left;
    padding-left: 30px;
    font-size: 1.3rem;
    line-height: 1.6;
  }
  
  h3 {
    font-size: 1.45rem;
  }
  
  /* Abschnitt "Über mich" */
  #uebermich {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
  }

  #uebermich img {
    width: auto;
    height: 600px;
    margin: 0 2rem;
  }
  
  p {
    line-height: 1.5;
    text-align: left;
    font-size: 1.3rem;
  }

  em {
    text-decoration: underline;
    text-decoration-style: dotted;
    text-decoration-color: #e0c2cd;
    text-decoration-thickness: 3;
  }

  /*Abschnitt "Kontakt"*/
  article#kontakt {
    border: 3px solid #e0c2cd;
    border-radius: 10px;
    margin-top: 4rem;
    margin-left: 5vw;
    margin-right: 5vw;
    margin-bottom: 0;
  }

  #kontakt h2 {
    margin-top: 1rem;
  }

  p.schreibmir {
    font-size: 1.6rem;
    text-align: center;
    margin: 1rem 0rem 1rem 0rem;
  }

  p.mailtel {
    font-size: 1.7rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1rem;
  }

    /* footer */
    footer {
        position: relative;
        bottom: 0;
        margin: 1rem 0rem 0rem;
        text-align: center;
        padding: 0.8rem 0rem;
        width: 100%;
        border-top: 2px solid #e0c2cd;
      }

    footer a {
      font-size: 1.3rem;
    }

    p.impressum {
      margin: 0 3vw 2vw 3vw;
    }

  /*Anpassungen für kleinere Bildschirme*/
  @media screen and (max-width: 48em){

    header {
      padding: 10px 15px 5px 15px;
    }

    header img {
      height: 40px;
    }

    header h1 {
      display: none;
    }

    nav ul li {
      margin-left: 1.1rem;
      font-size: 1.1rem;
    }

    h2 {
      font-size: 1.4rem;
      padding: 0rem 0.3rem;
    }

    #intro h2 {
      margin: 0 0 2rem 0;
    }

    #intro p, #uebermich p {
      width: 85vw;
    }

    #intro img {
      width: auto;
      height: 175px;
      margin: 1.1rem;
    }

    .services {
      gap: 15px;
      margin: 15px auto;
      padding: 0 15px;
    }

    .angebot img {
      width: 200px;
      height: auto;
      margin-bottom: 1.6rem;
    }

    .angebot ul {
        font-size: 1.1rem;
      }

    .introtext {
        margin: 0rem 2rem;
     }

    #uebermich img {
      width: auto;
      height: 450px;
      margin: 1.6rem;
    }

    p {
      font-size: 1.1rem;
    }

    p.schreibmir {
      font-size: 1.3rem;
      text-align: center;
      margin: 1rem 0rem 1rem 0rem;
    }
  
    p.mailtel {
      font-size: 1.4rem;
      font-weight: bold;
      text-align: center;
      margin-bottom: 1rem;
    }

    footer a {
      font-size: 1.1rem;
    }  

  }