* {
    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;
}
h1, p {
    font-family: 'DM Mono', monospace;
}
footer {
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    font-weight: 700;
}
.container1 {
    width: 200px;
    margin: 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0px 0px 15px rgb(1, 1, 17);
    margin: 10px auto;
    padding: 0px 0px 10px 0px;
}
img {
    width: 55px;
    height: 55px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 50%;
    margin-top: -70px;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0px 0px 15px rgb(1, 1, 17);
}
  .color {
    height: 50px;
    background-image: linear-gradient(125deg, rgb(54,81,217), 
    rgb(207,56,148))
    ;
    border-radius: 20px 20px 0px 0px;
}
button {
    background-color: rgb(19, 194, 19);
    color: white;
    width: 150px;
    border: none;
    padding: 5px 5px 5px 5px;
    font-size: 10px;
    border-radius: 5px;
}
.context {
    width: 150px;
    text-align: justify;
    margin: 0 auto;
    font-size: 10px;
    line-height: 20px;
    font-family: 'Open Sans', sans-serif;
}
.us {
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
}
h2 {
    font-size: 20px;
}