<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
 * Globals
 */


/* Custom default button */
.btn-light,
.btn-light:hover,
.btn-light:focus {
  color: #333;
  text-shadow: none; /* Prevent inheritance from `body` */
}


/*
 * Base structure
 */

body {
  text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
  box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);
}

.inner {
  max-width: 42em;

}

.cover {
    position: absolute;
    top: 50%;
    right: 10%;
    z-index: 20;
}

.cover-container {
    position: relative;
    background-image: url(../img/pool-header.jpg);
    max-width: 100%;
    background-size: cover;
    background-repeat: no repeat;
    background-attachment: fixed;
    background-position: 20% 0px;
  }

/*
 * Header
 */

.nav-masthead .nav-link {
  color: rgba(255, 255, 255, .5);
  border-bottom: .25rem solid transparent;
}

.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
  border-bottom-color: rgba(255, 255, 255, .25);
}

.nav-masthead .nav-link + .nav-link {
  margin-left: 1rem;
}

.nav-masthead .active {
  color: #fff;
  border-bottom-color: #fff;
}

/*MenÃ¼ chat */


body {
    margin: 0;
    font-family: Arial, sans-serif;
}
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(34, 34, 34, 0.5);
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    z-index: 1000;
}
.menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 50px;
    right: 10px;
    background-color: rgba(51, 51, 51, 0.5);
    width: fit-content;
    min-width: 100px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    overflow: hidden;
    text-align: right;
}
.menu a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    font-size: 14px;
}
.menu a:hover {
    background-color: rgba(68, 68, 68, 0.7);
}
.burger {
    cursor: pointer;
    font-size: 24px;
}
@media (min-width: 600px) {
    .menu {
        display: flex;
        position: static;
        flex-direction: row;
        background: none;
        box-shadow: none;
        width: auto;
    }
    .menu a {
        padding: 10px 12px;
    }
    .burger {
        display: none;
    }
}



  
  .text {
    color: white;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
  }

 
    .portfolio {
      margin-bottom: 50px;
      margin-top: 50px;
    }
 

    .about-me {
      margin-bottom: 50px;
      margin-top: 300px;
    }

    .btn {
      background-color: rgba(27, 27, 27, 0.629) !important;
      border: none; 
     
     }
     
     .btn:hover, .btn-primary:active {
       background-color: rgb(15, 15, 15) !important;
     }
     
     a, a:link{
       color: var(--mycolor) !important;
       text-decoration: none;
     }
     
     a:hover, a:visited{
       color:var(--mycolor) !important;
     }
     
     .modaltext{
       color: #000;
       text-shadow: none;
     }

   


/*3 Bilder */

    .image-container {
      display: flex;
      justify-content: center; /* Zentriert die Bilder */
      gap: 20px; /* Abstand zwischen den Bildern */
      padding: 20px; /* Etwas Abstand zum Rand der Seite */
  }
  .image-container img {
      width: 400px; /* GrÃ¶ÃŸe der Bilder anpassen */
      height: auto;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional: Schatten */
  }



/*Schrift*/


@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&amp;family=Roboto:wght@400&amp;display=swap');
        
body {
    text-align: center;
    font-family: 'Roboto', sans-serif;
    padding: 20px;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    margin: 100px 0 50px;
}

p {
    font-size: 18px;
    color: #bababa;
    max-width: 600px;
    margin: 0 auto 30px;
}

.p1{
  color: #fff;
  
}
  
h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  
}

/*links bild recht text*/


.container1 {
  display: flex;
  width: 100%;
}

.image-section {
  width: 33.3%;
}

.image-section img {
  width: 800px;
  height: auto;
}

.text-section {
  width: 66.6%;
  padding-left: 100px;
}

.contact-container{

margin: 100px 150px 50px;
}
/*links bild recht text ENDE */





/*Overlay 1*/

.container {
  position: relative;
  width: 50%;
}

.image {
  display: block;
  width: 200px;
  height: auto;
}

.overlay1 {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  background-color: #4d4d4d;
  overflow: hidden;
  width: 200px;
  height:0;
  transition: .5s ease;
}

.container:hover .overlay1 {
  bottom: 0;
  height: 100%;
}

.text {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

/*Overlay ende 1*/

/*Overlay anfang 2*/
.container {
  position: relative;
  width: 50%;
}

.image {
  display: block;
  width: 200px;
  height: auto;
}

.overlay2 {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  background-color: #4d4d4d;
  overflow: hidden;
  width: 200px;
  height:0;
  transition: .5s ease;
}

.container:hover .overlay2 {
  bottom: 0;
  height: 100%;
}

.text {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
/*Overlay ende 2*/

/*Overlay anfang 3*/
.container {
  position: relative;
  width: 50%;
}

.image {
  display: block;
  width: 200px;
  height: auto;
}

.overlay3 {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  background-color: #4d4d4d;
  overflow: hidden;
  width: 200px;
  height:0;
  transition: .5s ease;
}

.container:hover .overlay3 {
  bottom: 0;
  height: 100%;
}

.text {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
/*Overlay ende 3*/

</pre></body></html>