.buttonGrid {
	padding: 0.5rem;
    margin-bottom: 1rem;
	border: 0.1rem solid rgba(255,255,255,0.3);
	box-shadow: 0 0.3rem 1rem 0 rgba(31, 38, 135, 0.3);
	background: rgba(39, 40, 44, 0.7);
	backdrop-filter: blur(4px);
	
	border-radius: 0.5rem;
	overflow: hidden;

	animation: revealUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.25s;
    opacity: 0;

    display: grid;
    grid-template-columns: repeat(auto-fill, 88px);
    grid-auto-rows: 31px;
    gap:0.25rem;
    justify-content: center;
    grid-auto-flow: dense;
}

.buttonGrid h1 {
    grid-column: 1 / -1;
}

.buttonSite {
    height: 31px;
}

.buttonImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.buttonSiteFinn {
    width: 88px;
    height: 31px;

    opacity: 1;
    animation: shakeIntense 0.3s infinite forwards;
}