.tileContainer {
    height: 26vh;
    width : 26vh;
    margin: 1vh 2vh;
    display: flex;
    justify-content: center;
    align-items: center;

}

.tileContainerPhone {
    height: 40vw;
    width : 40vw;
    margin: 1vh 1vh;
    display: flex;
    justify-content: center;
    align-items: center;

}

.tile {
    display: block;
    height: 26vh;
    width : 26vh;    
    box-shadow: black 5px 5px 10px 0;
    border-radius: 5%;
    transition : width 500ms;    
    background-size: 100% 100%;
}

.tilePhone {
    display: block;
    height: 40vw;
    width : 40vw;   
    box-shadow: black 2px 2px 5px 0;
    border-radius: 5%;
    transition : width 500ms;    
    background-size: 100% 100%;
}