 @import url('https://fonts.googleapis.com/cs2?family=Poppins:wght@200;400;500;600;800&family=VT323&display=swap');

body {
    color: #f5f5f5;
    margin: 0;
    font-family: "Poppins";
    /*font-family: 'VT323', sans-serif;*/
    background: #f5f5f5;
    background-image: url("images/blackbg1.jpg");
}

p {
   color:white; 
   /*font-family: 'VT323', sans-serif;
   font-size: 18px;*/
   overflow-wrap: break-word;
   word-break: break-word;
   flex-wrap: wrap;
}

.grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
}

header{
    padding: 20px 40px;
    background: black;
    align-items: center;
}

header nav a:hover {
    text-decoration: underline;
}

header h1 {
    grid-column: span 6;
    color: white;
}

h3{
    text-align: center; 
}

header nav{
    grid-column: span 6;
    justify-self: end;            /* header nav ganz rechts */
}

header nav a{
    color: white;
    margin-left: 10px;
    text-decoration: none;
}

.welcome {
    color: white;
    
}
.impressum  ,h2, ul, ol {
    color: white;
}

.formularr {
    color: white;
}

.container {
    position: relative;
    text-align: center;
    color: white;
  }

main{
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
}

main img{
    grid-column: span 6;
    width: 100%;
    border-radius: 6px;
}

main .welcome {
    grid-column: 8 / span 5;
}

main > h2 {
    grid-column: span 12;
    text-align: center;
    font-size: 1.5em;
    padding-top: 20px;
}

main .pictureGallery1 {
    grid-column: span 12;
    border-radius: 6px;
    box-shadow: 3px 3px 3px rgba(0,0,0,0.05);
    
    
}
main .pictureGallery {
    grid-column: span 8;
    border-radius: 6px;
    box-shadow: 3px 3px 3px rgba(0,0,0,0.05);
}
main .pictureGallery2 {
    grid-column: span 4;
    border-radius: 6px;
    box-shadow: 3px 3px 3px rgba(0,0,0,0.05);
}
main .pictureGallery3 {
    grid-column: span 12;
    border-radius: 6px;
    box-shadow: 3px 3px 3px rgba(0,0,0,0.05);
}
main .pictureGallery4 {
    grid-column: span 4;
    border-radius: 6px;
    box-shadow: 3px 3px 3px rgba(0,0,0,0.05);
}
main .pictureGallery5 {
    grid-column: span 8;
    border-radius: 6px;
    box-shadow: 3px 3px 3px rgba(0,0,0,0.05);
}
main .pictureGallery6 {
    grid-column: span 6;
    border-radius: 6px;
    box-shadow: 3px 3px 3px rgba(0,0,0,0.05);
}
main .pictureGallery7 {
    grid-column: span 4;
    border-radius: 6px;
    box-shadow: 3px 3px 3px rgba(0,0,0,0.05);
}
main .pictureGallery8 {
    grid-column: span 2;
    border-radius: 6px;
    box-shadow: 3px 3px 3px rgba(0,0,0,0.05);
}
main .pictureGallery9 {
    grid-column: span 12;
    border-radius: 6px;
    box-shadow: 3px 3px 3px rgba(0,0,0,0.05);
}

@media (max-width: 500px) {
    
    body main{
        grid-column: 1 / span 8
    }
    
    .grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        
    }
    main .pictureGallery .pictureGallery1 .pictureGallery2 .pictureGallery3 .pictureGallery4 .pictureGallery5 .pictureGallery6 .pictureGallery7 .pictureGallery8 .pictureGallery9{
        grid-column: 1 / span 1;
    }
    .picslide{
        display: flex;
        align-items: center;
        justify-content: center;
        grid-column: 1 / span 1;
    }
    
  }


/* GIF Animation */
.moving-gif {
    position: relative;
    width: 40%; 
    animation: moveRight 5s linear infinite;
}
.moving-gif2 {
    position: relative;
    width: 40%; 
    animation: moveRight 5s linear infinite;
}
.moving-gifright {
    position: relative;
    width: 40%; 
    animation: moveLeft 5s linear infinite;
}
.moving-gifright2 {
    position: relative;
    width: 40%; 
    animation: moveLeft 5s linear infinite;
}
@keyframes moveRight {
    0% {
        transform: translateX(-300%);
    }
    100% {
        transform: translateX(100vw); 
    }
}
@keyframes moveLeft {
    0% {
        transform: translateX(100vw); 
    }
    100% {
        transform: translateX(-300%);
    }
}
/* GIF Animation */

/*random stuff*/
.fillout {
    width: 100%; 
    height: 100%;
    object-fit: cover; 
}
.picslide{
    display: flex;
    align-items: center;
    justify-content: center;
}
.help {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.box {
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    line-height: 1.6;
    text-align: justify;
}
.box2 {
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    line-height: 1.6;
    text-align: justify;
}
.lowOpacity {
    opacity: 0.5;
}
  img:hover {
    opacity: 1.0;
}
  .centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
}
.centeredBottom {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
}
.logoheight {
    margin-bottom: -13px;
}
.logo {
    width: 150px;
    margin-bottom: 20px;
  }
.middle{
    display: flex;
    justify-content: center; 
    align-items: center;
    margin-bottom: 100px;    
}  
.space{
    display: flex;
    justify-content: center; 
    align-items: center;
    margin-top: 80px;
    margin-bottom: 30px;
}
.grow img{
    transition: 0.6s ease;
}
    
.grow img:hover{
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
    transition: 0.8s ease;
}
.target-image {
    transition: opacity 0.5s ease; 
    opacity: 1; 
}
.twentyfife {
    width: 25%;
    height: 25%;
}
.fourty {
    width: 40%;
    height: 40%;
}
.fifty {
    width: 50%;
    height: 50%;
}
.sixtyPercent {
    width: 60%;
    height: 60%;
}
.hundredPercent {
    width: 100%;
    height: 100%;
}
/*random stuf*/

/*BiggerPictureShowcase*/         
.thumbnail {      
    cursor: pointer;
    transition: transform 0.3s ease;
}          
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); 
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.modal img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}
/*BiggerPictureShowcase*/

.FormContainer {
    background-color: black;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 30vw;
    opacity: 0.8;
  }
  .contactForm {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .FormField {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  label {
    font-size: 16px;
    margin-bottom: 5px;
  }
  input, textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 10px;
    font-size: 14px;
    background-color: #f9f9f9;
    margin-bottom: 10px;
  }
  input:focus, textarea:focus {
    border-color: red;
    outline: none;
  }
  .sendButton {
    padding: 12px;
    background-color: red;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  .sendButton:hover {
    background-color: darkred;
  }
  
/*Footer*/
footer {
    background-color: black;
    color: white;
    padding: 20px;
    text-align: end;
  }
  footer a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
  }
  footer a:hover {
    text-decoration: underline;
  }
/*Footer*/