﻿/*this css file use in Educational game like Fruits, Vegetables, Animals, Insect, Birds, Fish, Vehicles, Colors */

.showName {
    display: none;
    text-align: center;
    color: #000;
}

.grid {
    max-width: 25em;
}

.title {
    font-size:18px;
}

.grid__item{
    cursor: pointer;

@media screen and (max-width: 50em) {
    h1 {
        font-size:20px;
    }
    .showName {
        font-size: 15px;
    }
    .drop-area {
        font-size: 0.6em;
    }
}

@media screen and (max-width: 35em) {
    .grid {
        max-width: 23em;
    }
    .grid__item {
        font-size: 1.8em;
    }
}

@media screen and (max-width: 32em) {
    .grid {
        max-width: 18.5em;
        padding:0;
    }
    .grid__item {
        font-size: 1.6em;
    }
}

@media screen and (max-width: 21em) {
    .grid {
        max-width: 15em;
        padding:0;
    }
    .grid__item {
        font-size: 1.3em;
    }
}


