body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background: linear-gradient(90deg, orangered, rgb(236, 158, 12));
}
h1{
    background-color: black;
    color: orange;
    margin: 0;
    padding: 15px;
}


/*advert-page*/
.advert{
    display: flex;
    justify-content: space-between;
    max-height: 320px;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/*THE CATALOGUE PAGE*/

h3{
    font-size: 2rem;
    text-align: center;
    font-family: sans-serif;
    color: white;
    
}
figure{
    text-align: center;
    justify-content: center;
}


.advert1{
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    max-width: 100%;
    margin-left: 0;
    
}
.shoes,.shirts,.trousers,.jackets,.suits{
    border: solid 0.5px gray;
}

a{
    text-decoration: none;
    color: white;
}

button{
    background-color: black;
    padding: 9px;
    border-radius: 4px;
    border: solid 1px gray;
}
button:hover{
    background-color: orange;
    border: solid 1px white;
}


