[class^="archive"] {
    width: 155px;
    height: 275px;
    display: flex;
	flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    color: white;
    padding: 8px;
    font-size: 14px;
    overflow: hidden;
    word-wrap: break-word;
	gap: 10px;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

[class^="archive"]:hover {
	transform: scale(1.04);
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

.container {
	display: flex;
	flex-wrap: wrap;
    align-items: flex-end;
    gap: 10px;
}