html{
    height: 100%;
}
body {

    min-height: 100%;
    display: flex;
    flex-direction: column;
    background-image:url(Ropa.jpg);
    background-size: cover;

}
header
{
    background-color: silver;
    color: white;
    position: sticky;
    top: 0px;
    padding: 30px;
    text-align: center;
    font-size: 50px;
    
}
.gallery{
    padding-top: 10%;
    display: flex;
    justify-content: space-evenly;
}
.car-image{
    height: auto;
    width: 500px;
    border: 40px;
    border-color: royalblue;
    border-style: solid;
    border-radius:9%;
    transition: transform 0.3s ease;
    
}
img:hover{


    transform:scale(1.08);
    
}
.para{
    font-size: 75px;
    color: beige;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-style: italic;
    font-weight: 500;    
    
}
main{
    flex: 1;
    
}


footer{
    background-color: grey;
    text-decoration: underline;
    color: black;
    font-family: oswald,sans-serif;
    font-weight: 700;
    padding: 30px;
    text-align: center;
    font-size: 50px;
    margin-top: auto

}

