* {
    box-sizing: border-box;
    
    
}

html {
    font-size: 12px;
}

body {
    margin: 0;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 600;
}
.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: clamp(460px, 70vw, 960px);
    margin: 0 auto;
}
header {
    display: flex;
    align-items: center;
}
    header, main, footer {
        
        padding: 1rem;
        margin: 1rem;
    }
    main{
        flex-grow: 1;
    }
    h2 {
        margin-bottom: 20px;
        font-weight: 700;
        font-size: 22px;
    }
    p {
        line-height: 2;
        font-size: 16px;
    }
    header h1 {
        font-size: 26px;
        margin-right: auto;
    }
    header> a {
        margin: 0px 5px;
        font-size: 24px;
        color: #000;
        text-decoration: none;
        cursor: cell;
    }
    .flex-container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }
    .cell {
        min-height: 100px;
        width: calc(100%/4);
        padding: 10px;
    }
    .cell_con {
        
        padding: 6px;
        
    }
    img {
        background-size: contain;
        width: 100%;
        border: 4px solid rgb(207, 207, 207);
        box-shadow: 0 0 10px rgb(75 74 74);
        border-radius: 6px;
    }
    
footer {
    display: flex;
    justify-content: center;
    text-transform: uppercase;
    align-items: center;

}
footer p {
    margin-right: 25px;
}
footer>a {
    border-left:1px solid #000 ;
    text-decoration: none;
    color: #000;
    padding: 5px 10px;
    text-align: center;
    font-size: 13px;
}