*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif
}

html body{
    background-image: url(images/background.png);
    background-repeat: repeat;
    background-position: top center;
    background-attachment: fixed;
    background-size: 100% auto;
    font-size: 18px;
    text-align: center;
    background-size: cover;
    background-repeat: no-repeat
}





/* Menu Section - Desktop mode - in Header Section */  
 
menu{
    position:fixed;
    top:0;
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    background-color:rgba(15,15,15,0.82);
    z-index:1000
}
 
menu a{
    font-weight:normal
}
 
menu .mobile{
    display:none
}
 
menu .desktop{
    display:flex;
    flex-flow:row wrap;
    list-style:none;
    margin:0;
    padding:0;
    align-items:center
}
 
menu .desktop li{
    font-size:.9rem;
    padding:.25rem;
    margin:0;
    color:#fff
}
 
menu .desktop li a{
    display:inline-block;
    padding:.5rem 1rem;
    color:#5aa9f8;
    text-decoration:none
}
 
/* Start - Desktop - The Passing Underline Link Hover Effect */ 

li a{
    position: relative
  }
  
  menu .desktop a::before{
      content: '';
      position: absolute;
      width: 100%;
      height: 2px;
      border-radius: 2px;
      background-color: #cb2323;
      bottom: 0;
      left: 0;
      transform-origin: center;
      transform: scaleX(0);
      transition: transform .5s ease-in-out
    }
  
  menu .desktop a:hover::before{
    transform-origin: center;
    transform: scaleX(1)
  }

/* End - Desktop - The Underline Link Hover Effect */ 

menu .desktop li a:hover{
    color:#73b5f7;
}

menu .desktop li a:active{
    color:#5aa9f8;
}
 
menu .desktop .desktop-title{
    font-size:1rem
}
 
menu .desktop .desktop-title a{
    color:#fff
}
 
menu .desktop .desktop-title a:hover{
    background-color:transparent;
    box-shadow:none;
    color:#73b5f7;
}

@media screen and (max-width:1040px){
    menu .desktop{
    display: none
    }





/* Mobile Menu Section - Header Section */  

menu .mobile{
    display:flex;
    flex:1;
    flex-flow:column nowrap;
    position:relative;
    height: 48px
}
 
menu .mobile-title{
    height: 33px;
    flex:1;
    text-align:left;
    padding:.5rem 1rem;
    font-size:1.3rem
}

menu .mobile .mobile-title a:hover{
    background-color:transparent;
    box-shadow:none;
    color: #36bfb4;
    transition: transform .5s ease-in-out
}

menu .mobile .mobile-title a{
    transition:.5s all linear;
    color:#5aa9f8;
    font-size:1.19rem;
    text-decoration:none
}





/* Hamburger Icon Design*/
:root {
    --bar-width: 2.2rem;
    --bar-height: .16rem;
    --hamburger-gap: .5rem;
    --foreground: white;
    --background: transparent;
    --animation-timing: .4s ease-in-out;
    --hamburger-height: calc(var(--bar-height) *3 + var(--hamburger-gap) * 2)
}

/* Settings for Hamburger Icon & Close Icon*/
menu .hamburger-menu{
    --x-width: calc(var(--hamburger-height) * 1.41421356237);
    
    display: flex;
    flex-direction: column;
    gap: var(--hamburger-gap);
    width: max-content;
    position: absolute;
    top:0;
    right:0;
    padding-top: .75rem;
    padding-right:2rem;
    z-index: 2;
    cursor: pointer
}

.hamburger-menu:has(input:checked){
    --foreground: white;
    --background: #000
}

.hamburger-menu:has(input:focus-visible)::before,
.hamburger-menu:has(input:focus-visible)::after,
.hamburger-menu input:focus-visible{
    border: 1px solid var(--background)
}

/* Hamburger Menu - Defining Transitions in all styles*/
menu .hamburger-menu::before,
menu .hamburger-menu::after,
menu .hamburger-menu input{
    content: "";
    width: var(--bar-width);
    height: var(--bar-height);
    background-color: var(--foreground);
    border-radius: 9999px;
    transform-origin: left center;
    transition: opacity var(--animation-timing), width var(--animation-timing), rotate var(--animation-timing), 
    translate var(--animation-timing), background-color var(--animation-timing)
}

menu .hamburger-menu input{
    appearance: none;
    padding:0;
    margin:0;
    outline: none;
    pointer-events: none;

}

menu .hamburger-menu:has(input:checked)::before{
    rotate: 45deg;
    width: var(--x-width);
    translate: 0 calc(var(--bar-height) / -2)
}

menu .hamburger-menu:has(input:checked)::after{
    rotate: -45deg;
    width: var(--x-width);
    translate: 0 calc(var(--bar-height) / 2)
}

menu .hamburger-menu input:checked{
    opacity:0;
    width: 0
}

menu .mobile .menu{
    transition: translate var(--animation-timing);
    position: fixed;
    translate: -100%;
    top:.0;
    left:0;
    right:0;
    bottom:0;
    width:100%;
    max-height: calc(100vh);
	overflow-y: scroll;
    background-color:rgba(15,15,15,0.93);
    display: none
0
}}

menu .hamburger-menu:has(input:checked) + .menu{
    translate: 0
}

menu .menu a{
    display: inline-block;
    font-size:2rem;
    transition:.6s all linear;
    color:#5aa9f8;
    text-decoration:none;
    padding-top: 2rem;
}





/* Active Mobile Menu - The Passing Underline Link Hover Effect */ 

menu .menu li a{
    position: relative;
  }
  
  menu .menu li a::before{
      content: '';
      position: absolute;
      width: 100%;
      height: 2px;
      border-radius: 2px;
      background-color: #36bfb4;
      bottom: 0;
      left: 0;
      transform-origin: center;
      transform: scaleX(0);
      transition: transform .5s ease-in-out
    }
  
  menu .menu li a:hover::before{
    transform-origin: center;
    transform: scaleX(1)
  }

menu .menu li a:hover{
    color:#36bfb4
}

menu .menu li a:active{
    color:red
}  





/* Pages Main - Site Banner - Hero h1*/
 
.main{
    background-color: black;
    max-width: 1100px;
    height: 100vh;
    overflow: scroll;
    margin: auto;
    margin-top: 48px;
    padding: 0 1rem
}

.main-site-banner{
    background: url('images/banner.jpg');
    display:flex;
    flex-flow:column nowrap;
    align-items:stretch;
    justify-content:center;
    background-position:center;
    background-repeat:no-repeat;
    background-size:cover;
    height: 18rem
}

.main-site-banner h1{
    color: white;
    text-align:left;
    line-height:1;
    font-size:4.5rem;
    font-weight:500;
    text-shadow:0 0 9px rgba(0,0,0,0.5);
    padding-left: .5rem;
    word-wrap: break-word
    }

@media(max-width:1040px){
.main-site-banner h1 {
    font-size: 4rem;
    word-wrap: break-word
}
}

@media(max-width:480px){
.main-site-banner h1 {
    font-size: 3.5rem;
    word-wrap: break-word
}
}





/* Only About Pages Eng & Ger - Main2 - Site Banner - Hero h1*/

.main2{
    background-color: black;
    max-width: 1100px;
    height: 100vh;
    overflow: scroll;
    min-height: 885px;
    margin: auto;
    margin-top: 48px;
    padding: 0 1rem
}

.main2-site-banner{
    background: url('images/banner.jpg');
    display:flex;
    flex-flow:column nowrap;
    align-items:stretch;
    justify-content:center;
    background-position:center;
    background-repeat:no-repeat;
    background-size:cover;
    height: 18rem
}

.main2-site-banner h1{
    color: white;
    text-align: left;
    margin-top: 18rem;
    line-height:1;
    font-size:4.5rem;
    font-weight:500;
    text-shadow:0 0 9px rgba(0,0,0,0.5);
    padding-left: .5rem;
}

@media(max-width:1040px){
.main2-site-banner h1 {
    font-size: 4rem;
    word-wrap: break-word
}
}

@media(max-width:480px){
.main2-site-banner h1 {
    font-size: 3.5rem;
    word-wrap: break-word
}
}





/* Index Main Content */

.index-picture-black-white img{
    width: 99%;
    height: auto;
    z-index: 9998
}

a img.hover{
    display: none
}
a img.default{
    display: inherit
}
a:hover img.hover{
    display: inherit
}
a:hover img.default{
    display: none
}

.index-picture-black-white p{
    color: darkgrey;
    font-size: 18px;
    width: 100%;
    line-height: 45px;
    text-align:left;
    margin-left: 10px
}





/* Index Page QR-code image in nav element */
    
.QR-code img{
    width: 80px;
    height: 80px;
    margin-top: 10px;
    margin-left: -10px
}

nav{
    display: flex;  
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center
}

.QR-code p{
    color: darkgrey;
    font-size: .8rem;
    width: 100%;
    text-align:right;
    margin-top: 4.7rem;
    margin-right: .2rem;
    margin-left: .2rem
}





/* Etcetera Contact Page*/

.box5{
    width: 100%;
    height: 500px;
    background-color: black;
    font-size: 18px;
    color: white;
    margin: 1.5em 0em;
    margin-top: 115px
}

.box5 img{
    width: 50px;
    height: auto;
    margin-top: 1em;
    margin-left: 0px
}

.box5 img:hover{
    filter: brightness(150%);
    animation: shake 0.6s
}

.box5 .index-content{
    padding: 1em;
    margin: 0px;
    text-align: left
}

.box5 .index-content h3{
    color: lightgray
}

.box5 .index-content p1{
    color: darkgray;
    line-height: 2em
}

.box5 .index-content p2{
    color: lightgray;
    line-height: 2em;
    font-weight: 900;
    margin-top: 20px
}

.box5 .index-content li{
    list-style: none;
    margin-left: 00px
}

.box5 .index-content li a{
    color:#5aa9f8;
    text-decoration: none
}

.box5 .index-content li a:hover{
    color: red;
    text-decoration: underline
}





/* About Detail Page */

.box1 .about-details-content{
    padding: 1em;
    margin: 0px;
    overflow-y: scroll;
    overflow-x: hidden;
    text-align: left;
    list-style: none
}

.box1 .about-details-content img{
    animation: none;
    filter:none;
    width: 18%;
    min-width: 90px;
    margin-top: 6.7rem;
    margin-bottom: 1.5rem
}

 .about-details-content h3{
    color: lightgray
}

 .about-details-content h4{
    color: lightgray
}

 .about-details-content p3{
    color: lightgray;
}

 .about-details-content p2{
    color: 5aa9fa;
}

 .about-details-content p4{
    color: red;
    font-weight: 400;
    text-shadow: 2.5px 2.5px #0d3aff
}

 .about-details-content p1{
    color: darkgray;
}

 .about-details-content p2:hover{
    color: red
}

 .about-details-content li a{
    text-decoration: none
}

 .about-details-content li:hover{
    color: red
}

.about-details-content .c12{
    color: white;
    font-weight: 450;
    text-shadow: 2px 2px 1px #0d3aff,
    3px 3px 1px #fad401,
    4px 4px 1px red
}





/* SiteMap Page */

.sitemap-content{
    background-color: black;
    font-size: 18px;
    margin-left: .9em;
    margin-top: 140px;
    line-height: 40px;
    text-align: left;
    list-style: none
}

.sitemap-content p1{
    color: 5aa9fa;
    line-height: 65px
}

.sitemap-content p1:hover{
    text-decoration: underline;
    color: #f44336
}

.sitemap-content p2{
    color: 5aa9fa;
    margin-left: 2em
}

.sitemap-content p2:hover{
    text-decoration: underline;
    color: #f44336
}

.sitemap-content a{
    text-decoration:none
}





/* DesignDeterminationEnglish Flag Facebook Vector */
/* DesignDeterminationEnglish Flag Facebook Vector */

.container-flag-detail-vector{
    width: 200px;
    height: 80px;
    margin-top: 13rem;
    background-color: transparent
} 

.container-flag-detail-vector .box2{
    float: right
}

.container-flag-detail-vector .box2 img{
    width: 50px;
    margin-top: 56px;
    margin-right: 1em
}

.container-flag-detail-vector .box3{
    float: left
}

.container-flag-detail-vector .box3 img{
    width: 75px;
    padding: 1.5em;
    margin-top: 30px
}

.container-flag-detail-vector .box2 img:hover{
    filter: brightness(120%);
    animation: shake 0.6s  
}

.container-flag-detail-vector .box3 img:hover{
    filter: brightness(130%);
    animation: shake 0.6s
}





/* DesignDeterminationEnglish */
/* DesignDeterminationGerman */

.container1-about{
    background-color: transparent;
    display: flex;
    flex-flow: row nowrap;
    margin: 1rem 0;
    margin-top: 14rem;
    text-align: left;
    color: darkgrey
}

.container1-about h4{
    color: lightgrey
}

.container1-about .c11{
    color: white;
    font-weight: 700;
    text-shadow: 2px 2px 1px red

}

.container1-about .c12{
    color: white;
    font-weight: 700;
    text-shadow: 2px 2px 1px #0d3aff,
    3px 3px 1px #fad401,
    4px 4px 1px red
}

.container1-about .box.inline1{
    display: flex;
    flex-flow: column;
    margin-top: 20px;
    width: 50%;
    padding: 7px;
    font-size: 16px
}

.container1-about .box.inline2{
    display: flex;
    flex-flow: column;
    margin-top: 20px;
    width: 50%;
    padding: 7px;
    font-size: 16px
}





/* Caricatures Page */

.container1-caricatures{
    width: 65%;
    height: 777px;
    background-color: black;
    margin: 0 auto;
    margin-top: 155px;
    grid-auto-rows: 50px
  }

.gallery{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-gap: 80px;
    margin-left: 20px;
    margin-top: 45px
}

.gallery .item{
    width: 60%;
    height: auto;
    margin: 0 auto;
    cursor: pointer;
    filter: grayscale(40%)
}

.gallery .item:hover{
    filter: none;
    transition: 0.3s ease-out;
    transform: scale(1.06)
}





/* Oilpaintings Page */

.container-oilpaintings-owl-carousel{
    background-color: rgb(255, 255, 255);
    width: 90%;
    height: auto;
    font-size: small;
    padding: 1em;
    margin-top: 155px;
    border-radius:.5rem
}

figcaption{
    color: darkgray;
    font-size: 14px
}

.item-fluid:hover{
    filter: none;
    transition: 0.3s ease-out;
    transform: scale(1.06)
}

.container-oilpaintings-owl-carousel h1{
    color: red;
    margin-top: 1em
}

.container-oilpaintings-owl-carousel h2{
    color: darkgray;
    font-weight: 600
}

.container-oilpaintings-owl-carousel p{
    color: red;
    font-weight: 500;
    font-size: large
}

.container-oilpaintings-owl-carousel img{
    width: 70%
}

.container-oilpaintings-owl-carousel a{
    text-decoration: none
}





/* Blog Page*/

.blog-page p{
    color: #36bfb4;
    line-height: 1.5em;
    font-size: 1.3rem;
    margin-top: 6rem
}

.blog-page .posts{
    margin-top: 30px
}
  
.blog-page .posts .post{
    display: flex;
    text-align: left;
    flex-flow:row wrap;
    gap:.5rem;
    margin-top:4rem;
    padding:2rem
}

.blog-page .posts .post .info .date {
    color: lightgray;
    font-size: 1.2rem;
    padding-bottom: .3rem
}

.blog-page .posts .post p{
    color: lightgray
}
  
.blog-page .posts .post .thumbnail{
    min-width:280px;
    flex:0
}
  
.blog-page .posts .post .thumbnail a{
    display:block
}
  
.blog-page .posts .post .thumbnail a img{
    max-width:260px;
    border-radius:.5rem
}

.blog-page .posts .post .thumbnail a img:hover{
    filter: brightness(110%);
    animation: shake 0.6s
}
  
.blog-page .posts .post .info{
    flex:1;
    min-width:300px;
    padding: 0 .5rem
}
  
.blog-page .posts .post .info h3{
    font-size:1.3rem;
    font-weight: 550;
    margin: 0;
    padding:0
}
  
.blog-page .posts .post .info h3 a{
    display:block;
    color:#5aa9f8;
    text-decoration:none
}

.blog-page .posts .post .info h3 a:hover{
    color: red
}
  
.blog-page .posts .post .info .excerpt p{
    font-size:1rem;
    font-weight:300;
    margin:0
}

  @media screen and (max-width:650px){
  .posts .post{
    border-top:3px solid #000;
    flex-flow:column nowrap
  }
  
  .posts .post .thumbnail{
    justify-items:center
  }
  
  .posts .post .info{
     padding:0
  }
  }





/* Blogs Pages - Main3 - Banner*/

.main3{
    background-color:#2b2d41;
    max-width: 1100px;
    height: 100vh;
    overflow: scroll;
    min-height: 885px;
    margin: auto;
    margin-top: 48px;
    padding: 0 1rem
}

main3-site-banner{
    background-image:var(--header-bg);
    text-align: left;
    display:flex;
    flex-flow:column nowrap;
    align-items:stretch;
    justify-content:center;
    background-position:center;
    background-repeat:no-repeat;
    background-size:cover;
    height: 18rem
}

main3-site-banner h1{
    color: white;
    line-height:1;
    font-size:4rem;
    font-weight:500;
    text-shadow:0 0 9px rgba(0,0,0,0.5);
    text-align:left;
    margin-top: 3.5rem;
    padding-left: .5rem;
    word-wrap: break-word
}

main3-site-banner h2{
    color: white;
    line-height:1;
    font-size:2.7rem;
    font-weight:500;
    text-shadow:0 0 9px rgba(0,0,0,0.5);
    text-align:left;
    margin-top: ;
    padding-left: .5rem;
    word-wrap: break-word
}

main3-site-banner p{
    color: white;
    text-shadow: 1px 1px #ff0000,
    2px 2px blue;
    text-align:left;
    padding-left: .5rem;
}





/* Blogs Pages - Box - Author Date Updated Tags Categories*/

.main3 .post .meta{
    padding: 1rem;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 200;
    text-align: left;
    color: lightgray;
    background-color:#1927926a;
    border-radius:.5rem;
    max-width: 350px;
    min-width: 300px;
    box-shadow:inset 0 3px 5px rgba(0,0,0,0.4);
}

.main3 .post .meta .tags{
    margin:.25rem 0
}

.main3 .post .meta .tags .tag{
    display:inline-block;
    background-color:rgba(90, 169, 248, 0.332);
    padding:.1rem .25rem;
    border-radius:.25rem
}

.main3 .post .meta .categories{
    margin:.25rem 0
}

.main3 .post .meta .categories .category{
    display:inline-block;
    background-color:rgba(250, 1, 1, 0.274);
    padding:.1rem .25rem;
    border-radius:.25rem
}





/* Blogs Pages - Post*/

.main3 .content{
    margin-bottom: 1rem
}

.main3 .blog-post h1{
    color: lightgray;
    line-height:1;
    line-height:1;
    padding:0;
    margin: 2.5rem 0 0 0;
    font-size: 2.75rem;
    font-weight: 500;
    text-align:left;
    margin-top: 4rem;
    margin-bottom: 1rem;
    padding-left: .5rem;
    word-wrap: break-word
}

.main3 .blog-post h2{
    color: lightgray;
    font-size:1.6rem;
    font-weight: 400;
    margin:2rem 0 0 0
}

.main3 .blog-post h3{
    color: lightgray;
    font-size:1.1rem;
    font-weight: 400;
    margin:1.5rem 0 0 0
}

.main3 .blog-post p{
    color: lightgray;
    font-size:1.1rem;
    font-weight: 200;
    line-height: 1.5;
    text-align: left;
    list-style: none;
    text-decoration: none;
    margin:1rem 0 0 0
}

.main3 .blog-post p2{
    color: 5aa9fa;
    font-weight: 400
}

.main3 .blog-post p2:hover{
    color: red;
}

.main3 .blog-post p3{
    color: red;
    font-weight: 400
}

.main3 .blog-post p4{
    color: red;
    font-weight: 400;
    text-shadow: 2.5px 2.5px #0d3aff
}

.main3 .blog-post li{
    list-style: none;
    text-decoration: none;
    text-align: left;
}

.main3 .blog-post li a{
    text-decoration: none
}

.main3 .blog-post li:hover{
    color: red
}

.main3 .blog-post .c12{
    color: white;
    font-weight: 450;
    text-shadow: 2px 2px 1px #0d3aff,
    3px 3px 1px #fad401,
    4px 4px 1px red
}





/* Blogs Pages - Facebook iframe - Video Size*/

.facebook-responsive {
    position: relative;
    margin-bottom: 20rem
}

.facebook-responsive iframe {
    left: 0;
    top: 0;
    height: 314;
    width: 100%;
    max-width: 560px;
    border: 1px;
    position:absolute
}





/* Blogs Pages - Youtube iframe - Video Size*/

.youtube-responsive {
    float: center;
    position: relative

}

.youtube-responsive iframe {
    justify-content:center;
    border-radius:.5rem;
    height: 314px;
    width: 100%;
    max-width: 560px;
    position: center
}





/* Blogs Pages - Share + The Passing Underline Link Hover Effect*/

.share.inline{
    display:flex;
    padding:.5rem;
    justify-content:flex-end;
    align-items:center;
    background-color: black;
    box-shadow:inset 0px 2px 1px red
}

.share.inline .label{
    font-size:.9rem;
    font-weight: 100;
    color: white
}

.share.inline .services ul{
    list-style:none;
    margin:0;
    padding:0;
    display:flex;
    align-items:center
}

.share.inline .services ul li{
    margin:0;
    padding:0 .25rem;
    line-height:1
}

.share.inline .services ul li a{
    display:flex
}
  
.share.inline .services ul li a img{
    max-height:30px
}

.share.inline .services ul li a::before{
      content: '';
      position: absolute;
      width: 100%;
      height: 2px;
      border-radius: 2px;
      background-color: #cb2323;
      bottom: 0;
      left: 0;
      transform-origin: center;
      transform: scaleX(0);
      transition: transform .5s ease-in-out
    }
  
.share.inline .services ul li :hover::before{
    transform-origin: center;
    transform: scaleX(1)
  }





/* Colors - About Details Page */ 
.c1{
    color: #5aa9f8
}

.c2{
    color: red
}

.c3{
    color: purple
}

.c4{
    color: #F8DE0D
}





/* Colors - Blog Page */ 
.c10{
    color: white;
    font-size: 1.1rem;
    font-weight: 500
}

.c11{
    color: #67F312;
    font-size: 1.1rem;
    font-weight: 500
}

.c15{
    color: #5aa9f8;
    font-size: 1.1rem;
    font-weight: 500
}

.c13{
    color: #fad401;
    font-size: 1.1rem;
    font-weight: 500
}

.c14{
    color: red;
    font-size: 1.1rem;
    font-weight: 500
}





/* Figure img left + centered copyright below img */

.figure-left {
    float: left;
}

.figure-left img{
    border-radius:.5rem;
    max-width: 350px
}


/* Figure img centered + centered copyright below img */

.figure-centered {
    float: center;
}

.figure-centered img{
    justify-content:center;
    border-radius:.5rem;
    max-width: 40rem;
    width: 97%;
    height: auto;
}




/* Footer */

.info .copyright{
    font-size:.75rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    display:flex;
    flex-flow:row wrap;
    color:#b5b5b5;
    justify-content:center
}





/* Footer Offerings*/

.offerings .box{
    margin-top: 80px;
    position: relative;
    padding: 20px;
    margin-left: auto;
    margin-right: auto;
    color: lightgray;
    background-color:#73b5f7;
    border-radius:.5rem;
    max-width: 320px;
    min-width: 280px;
    box-shadow:inset 0 3px 5px rgba(0,0,0,0.4)
}

.offerings .box .label{
    font-size:18px;
    font-weight: 100;
    color: white;
    text-shadow: 1.5px 1.5px 1px #0d3aff
}

.offerings .services img{
    width: 135px;
    height: 50px;
    border-radius:.5rem;
    margin-top:  1rem;
    box-shadow: 3px 3px 1px rgba(0,0,0,0.4)
}

.offerings .services img:hover{
    filter: brightness(120%);
    animation: shake 0.6s
}





/* Media Queries */

@keyframes shake{
    0%{
        transform: translate(0px, 0px) rotate(0deg)
    }
    25%{
        transform: translate(1px, 1px) rotate(1deg)
    }
    50%{
        transform: translate(-1px, -1px) rotate(-1deg)
    }
    75%{
        transform: translate(2px, 2px) rotate(2deg)
    }
    100%{
        transform: translate(-1px, -1px) rotate(-1deg)
    }
}