* {
    box-sizing: border-box;
    overflow: auto;
}

html {
    font-size: 12px;
}

body {
    margin: 0;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 600;
}

.container {
    width: clamp(576px, 70vw, 1200px);
    margin: 0 auto;
    
 }

header, main, footer {
    padding: 1rem;
    margin: 1rem;
}

/******************************/

.container {
min-height: 100vh;
display: flex;
flex-direction: column;}

main {flex-grow: 1;}

.PG {font-size: 24px;
font-family: Georgia, 'Times New Roman', Times, serif;
font-weight: bold;
color: black;
text-decoration: none;
margin-right: auto;}

a[href] {font-family: Georgia, 'Times New Roman', Times, serif;
font-weight: bold;
color: black;
text-decoration: none;}

header {display: flex;
gap: 6px;
align-items: center;}

h1 {font-family: Georgia, 'Times New Roman', Times, serif;
    color: black;
    font-size: 20px;}

p {font-family: 'Times New Roman', Times, serif;
    font-weight: normal;
    font-size: 20px;
    color: black;}

footer {text-align: center;
    font-family: 'Times New Roman', Times, serif;
    font-weight: normal;
    color: black;
    font-weight: bold;}

.catalog {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}


.cell {
    width: calc(100% / 4);
    padding: 4px;
    }


.component {
    background: white;
    }

img {width: 100%;}




    


