 #home {
    
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    
    grid-template-areas: "header header header header" "introduction introduction introduction introduction" "originals originals originals originals" "portraits portraits portraits portraits" "motorcycles motorcycles motorcycles motorcycles";
    
}
header {
    display: flex;
    grid-area: header;
    background: linear-gradient(90deg, rgb(50, 50, 50), gray, rgb(50, 50, 50));
    height: 300px;
    justify-content: center;
    align-items: center;
    position: relative;
    border: 10px solid rgb(50, 50, 50);
    width: 100%;
    margin: 0;
    z-index: 3;
}

nav {
    display: flex;
    justify-content: center;
    background-color: black;
    height: 60px;
    position: absolute;
    bottom: -40px;
    width: 100%;
    border: 10px solid rgb(50, 50, 50);
    


}



* {
    margin: 0;
    width: 100%;
    box-sizing: border-box;
     font-family: "Special Gothic Expanded One", sans-serif;
  font-weight: 400;
  font-style: normal;
}
nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    left: -17px;
    
    

}
li  {
    display: flex;
    width: 120px;
    height: 20px;
    background-color: red;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    margin: 10px;
    color: white;
   
}
li a {
    text-decoration: none;
    color:white;
    text-align: center;
    
}
@media screen and (max-width: 768px) {
    li {
        width: 80px;
        margin: 5px;
    }
    li a {
        font-size: 80%;
    }
}
.introduction {
    grid-area: introduction;
    display: flex;
    position: relative;
    width: 100%;
    height: 180px;
    background: linear-gradient(180deg, rgb(50, 50, 50), gray, rgb(50, 50, 50));
    border: 10px solid rgb(50, 50, 50);
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    
    
}

.introduction h2 {
    text-align: center;
    position: absolute;
    top: 30px;
    color: white;



}
.introduction p {
    text-align: center;
    position: absolute;
    bottom: 20px;
    color: white;
    font-size: 1.25rem;
}
@media screen and (max-width: 768px) {
    .introduction h2 {
        font-size: 1.25rem;
    

    }
    .introduction p {
        font-size: 1rem;
        bottom: 10px;
    }
}
.originals {
    grid-area: originals;
    position: relative;
    display: flex;
    width: 100%;
    height: 200px;
    background: linear-gradient(90deg, rgb(50, 50, 50), gray, rgb(50, 50, 50));
    border-bottom: 10px solid rgb(50, 50, 50);
    border-left: 10px solid rgb(50, 50, 50);
    border-right: 10px solid rgb(50, 50, 50);
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 3px 3px 1px black;
     
}
.originals img {
    margin-left: auto;
    margin-right: auto;
    height:190px;
    width: 700px;
    border-left: 10px solid rgb(50, 50, 50);
    border-right: 10px solid rgb(50, 50, 50);
}
.originals p {
position:absolute;
text-align: center;
margin-top: 18px;
font-size: 1.25rem;
}
.originals h2 {
    position:absolute;
    top: 20px;
    text-align:center;
}
.originals button {
    animation: button 7s linear infinite forwards;
text-align: center;
    width: 120px; 
    
}
.originals a {
    position: absolute;
    text-decoration: none;
    bottom: 20px;
    text-align: center;

}
@media screen and (max-width: 768px) {
    .originals img {
        height: 144px;
        width: 480px;
    }
    .originals h2 {
        top: 25px;
    }
    .originals p {
        margin-top: 10px;
    }
.originals a {
    bottom: 30px;
}
}
    

@keyframes button {
    0% {
        box-shadow: 0 0 5px red;
    }
    50% {
        box-shadow: 0 0 20px red;
    }
    100% {
        box-shadow: 0 0 5px red;
    }
}
.portraits {
    grid-area: portraits;
 position: relative;
    display: flex;
    width: 100%;
    height: 200px;
    border-bottom: 10px solid rgb(50, 50, 50);
    border-left: 10px solid rgb(50, 50, 50);
    border-right: 10px solid rgb(50, 50, 50);
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 3px 3px 1px black;
    background: linear-gradient(90deg, rgb(50, 50, 50), gray, rgb(50, 50, 50));
}
.portraits img {
    margin-left: auto;
    margin-right: auto;
    height:190px;
    width: 700px;
    border-left: 10px solid rgb(50, 50, 50);
    border-right: 10px solid rgb(50, 50, 50);
}
.portraits p {
position:absolute;
text-align: center;
margin-top: 18px;
font-size: 1.25rem;
}
.portraits h2 {
    position:absolute;
    top: 20px;
    text-align:center;
}
.portraits button {
    animation: button 7s linear infinite forwards;
    text-align: center;
    width: 120px;
}
.portraits a {
    position: absolute;
    text-decoration: none;
    bottom: 20px;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .portraits img {
        height: 144px;
        width: 480px;
    }
    .portraits h2 {
        top: 25px;
    }
    .portraits p {
        margin-top: 10px;
    }
.portraits a {
    bottom: 30px;
}
.motorcycles {
    grid-area: motorcycles;
    position: relative;
    display: flex;
    width: 100%;
    height: 200px;
    background: linear-gradient(90deg, rgb(50, 50, 50), gray, rgb(50, 50, 50));
    border-bottom: 10px solid rgb(50, 50, 50);
    border-left: 10px solid rgb(50, 50, 50);
    border-right: 10px solid rgb(50, 50, 50);
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 3px 3px 1px black;
}}
.motorcycles img {
    margin-left: auto;
    margin-right: auto;
    height:190px;
    width: 700px;
    border-left: 10px solid rgb(50, 50, 50);
    border-right: 10px solid rgb(50, 50, 50);
}
.motorcycles p {
position:absolute;
text-align: center;
margin-top: 18px;
font-size: 1.25rem;
}
.motorcycles h2 {
    position:absolute;
    top: 20px;
    text-align:center;
}
.motorcycles button {
    animation: button 7s linear infinite forwards;
    text-align: center;
    width: 120px;
    
   
    
}
.motorcycles a {
    position: absolute;
    text-decoration: none;
    bottom: 20px;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .motorcycles img {
        height: 144px;
        width: 480px;
    }
    .motorcycles h2 {
        top: 25px;
    }
    .motorcycles p {
        margin-top: 10px;
    }
.motorcycles a {
    bottom: 30px;
}}
.logo {
    position: absolute;
 font-family: "Special Gothic Expanded One", sans-serif;
  font-weight: 400;
  font-style: normal;
    font-size: 5rem;
    text-shadow: 5px 5px 5px black;
    color: red;
    
    
    
}
.img-header-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    
    animation: img-header-mobile 15s linear infinite forwards;

    background-size: cover;
    text-align: center;
    position: relative;}
.img-header {
    display: flex;
    justify-content: center;
    align-items: center;
    
    animation: img-header 15s linear infinite forwards;

    background-size: cover;
    text-align: center;
    position: relative;
}

@keyframes img-header {
    0% {
        background-image: url(images/main1-1920.jpg);
    height: 215px;
    width: 768px;
        border: 10px solid rgb(50, 50, 50);
    }
    33% {
        background-image: url(images/main2-1920.jpg);
        height: 215px;
        width: 768px;
        border: 10px solid rgb(50, 50, 50);
    }
    66% {
        background-image: url(images/main3-1920.jpg);
        height: 215px;
        width: 768px;
        border: 10px solid rgb(50, 50, 50);
    }
    100% {
        background-image: url(images/main1-1920.jpg);
height: 215px;
width: 768px;
border: 10px solid rgb(50, 50, 50);
}}

 @keyframes img-header-mobile {
    0% {
        background-image: url(images/main1-1920.jpg);
    height: 94px;
    width: 360px;
        border: 10px solid rgb(50, 50, 50);
    }
    33% {
        background-image: url(images/main2-1920.jpg);
        height: 94px;
        width: 360px;
        border: 10px solid rgb(50, 50, 50);
    }
    66% {
        background-image: url(images/main3-1920.jpg);
        height: 94px;
        width: 360px;
        border: 10px solid rgb(50, 50, 50);
    }
    100% {
        background-image: url(images/main1-1920.jpg);
height: 94px;
width: 360px;
border: 10px solid rgb(50, 50, 50);
}   
}
@media screen and (max-width: 768px) {
.logo {
    font-size: 3.5rem;
}
.img-header-mobile {

    display: flex;
    justify-content: center;
    align-items: center;
    height: 94px;
    width: 360px;
    animation: img-header-mobile 15s linear infinite forwards;

    background-size: cover;
    text-align: center;
    position: relative;
}}

.fire {
   display: flex;
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
   margin-left: auto;
   margin-right: auto;
   background-color: gray;
   border: 10px solid rgb(50, 50, 50);
   height: 800px;
   width: 100%;
   
   
    
     animation: fire 2s linear infinite forwards;
    
}
@keyframes fire {
    0% {
        background-image: url(images/fire3.jpg);
    
        background-color: gray;
  
    }
    12% {
    background-image: url(images/fire5.jpg);
    
    }
    24% {
        background-image: url(images/fire2.jpg);
      
    
    }
    36% {
        background-image: url(images/fire3.jpg);
        
 
    }
    48% {
        background-image: url(images/fire4.jpg);
      
     
    }
    60% {
        background-image: url(images/fire5.jpg);
       
    }
    72% {
        background-image: url(images/fire6.jpg);
       

    }
    84% {
        background-image: url(images/fire7.jpg);
         
    }
    100% {
        background-image: url(images/fire3.jpg);
       
    }
    }

.gallery {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    padding: 30px;
    background: gray;
    border: 10px solid rgb(50, 50, 50);  
    height: 100%;

}
.gallery img {
width: 200px;
height: 200px;
transition: transform 0.3s ease;

    
    border: 10px solid rgb(50, 50, 50);
}
.gallery img:hover {
    transform: scale(1.1);
}
.heading {
    height: 100px;
    width: 100%;
    background: linear-gradient(90deg, rgb(50, 50, 50), gray, rgb(50, 50, 50));
    display: flex;
    font-size: 2rem;
    position: relative;
}
.heading h1 {
    text-align: center;
    color: white;
    font-size: 3rem;
    position: absolute;
    top: 35px;
}
footer {
    text-align: center;

    height: 150px;
    background-color: red;
    border: 10px solid rgb(50, 50, 50);
    gap: 5px;
    
}
.instagram, .facebook, .youtube {
    height: 50px;
    width: 50px;
    margin: 10px;
    display:inline-block;



}

footer p {
    font-size: 2rem;
    font-weight: bold;
    
}
.motor-title {
    text-align: center;
    background-color: red;
}
.motor-title h2 {
    color: white;
    font-size: 2rem;
    border: 10px solid rgb(50, 50, 50);
}
@media screen and (max-width: 768px) {


.gallery {
 grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
    padding: 15px;
}
.gallery img {
    height: 130px;
    width: 130px;
}}