html {
    box-sizing: border-box;
}
*, *:before, *:after {
	box-sizing: inherit;
}

body{
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-size:.9rem;
    background-color:#eee;
    min-height: 100vh;
    display:flex;
    justify-content: center;
    align-items: center;
}

.container {
    border:1px solid #ddd;
    background-color:white;
    width: 85%;
    padding: 3em;
    display:grid;
    grid-template-columns: repeat(auto-fill, 175px); 
    grid-auto-rows: minmax(120px, auto);
    gap:10px;
    justify-content: center;
}

.item {
    border: 1px solid #ccc; 
    width: 175px;
    height: 120px;
    display:flex;
    justify-content: center;
    align-items: center;
}

.item a{
    text-decoration:none;
    text-align: center;
}


.fs-2{
    font-size: 2rem;
} 


/***********************************/
/* Colors */
.goldenrod{
    color: goldenrod;
}

.darkred{
    color:darkred;
}

.darkslategrey{
    color:darkslategrey;
}

.red{
    color:red;
}

.green {
    color: green;
}