.cretilecontainer {
    width: calc(100% - 24px);
    display: flex;
    flex-wrap: wrap;
    margin: 12px;
    gap: 4px;
    align-items: flex-start;
}

.toprow {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
    gap: 8px;
}

.cretile {
    width: calc(33.333% - 8px);
    height: fit-content;
    backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	background: rgba(80, 80, 80, 0.2);
    border-radius: 20px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.cretile.lowperf {
    background: rgba(10, 10, 10, 1);
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}

@media screen and (max-width: 1200px) {
    .cretile {
        width: calc(50% - 8px);
        height: fit-content;
    }
}

@media screen and (max-width: 800px) {
    .cretile {
        width: 100%;
        height: fit-content;
    }
}

.cretile h2 {
    width: 100%;
    text-align: center;
    font-weight: normal;
    font-size: 22px;
    color: #fff;
    margin: 4px 0;
}

.cretile p {
    margin: 8px 0;
    font-weight: normal;
    font-size: 18px;
    color: #fff;
    text-align: center;
}

.cretile img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    margin: 8px 0;
}