.themes {

}

.themes-heading {
    font-size: 2.2rem;
    text-align: center;
}

.themes-list {
    display: flex;
    margin-top: var(--spacing-md);
    gap: var(--spacing-sm);
    position: relative;
    justify-content: center;
    flex-wrap: wrap;
}

.theme-wrapper {
    background-color: white;
    border: solid 2px var(--color-dark);
    border-radius: 12px;
    padding: 12px;
    box-shadow: var(--card-shadow);
}

.theme-image img {
    width: 100%;
}

.theme-name {
    font-size: 2rem;
    margin: var(--spacing-sm) 0 var(--spacing-md);
}

@media screen and (min-width: 800px) {

    .theme-wrapper {
        width: calc(50% - 6px);
    }
    
}