.site-guide {
    width: 100%;
    display: grid;
    gap: 10px;
    margin: 5px;
}
@media (width >= 420px) {
    .site-guide {
	//width: calc(100% - 20px);
	grid-template-columns: 33% 33% 33%;
    }
    .small-container,.large-container {
	width: calc(100% - 12px);
    }
}
@media (width < 420px) {
    .site-guide {
	//width: calc(100% - 10px);
	grid-template-columns: 50% 50%;
    }
}
.small-container,.large-container {
    box-sizing: border-box;
    border: black 1px solid;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-content: space-around;
    text-align: center;
    background: #ddd;
    min-height: 150px;
    max-height:200px;
    padding:5px;
}
#page-payload a {
    color: black;
    text-decoration: none;
    font-size: 15px;
    font-weight: normal;
    border: .5ex #0f0 outset;
    font-family: sans-serif;
    padding: 2px;
    background: #ccccff;
    width:80%;
    height:auto;
    display:inline-block;
}
