* {
    box-sizing: border-box;
}
.container {
    width: 70vw;
    min-width: 576px;
    max-width: 992px;
    margin: 0 auto;
    padding: 1rem;
    
}
.flex {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
main {
    flex-grow: 1;
}
header {
    display: flex;
    gap: 15px;
    align-items: center;
}
p:first-child{
    font-size: 40px;
    font-weight: bold;
    margin-right: auto;
}
.catalog {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 10px;
    align-items: center;
}
.foto-1 {
    
    padding: 10px;
    width: calc( (100% - 3 * 15px) /4);
   
}
img {
    width: 200px;
    border: 5px solid white;
    box-shadow: 0px 0px 15px rgb(36, 35, 35);
    border-radius: 5px;text-align: center;
    font-size: 100%;   
}
h1, p {
    font-family: 'DM Mono', monospace;
}
footer {
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    font-weight: 700;
}