

h1 {
    color: white;
    text-align: center;
}

.appicon {
    width:256px;
    height:350px;
    margin: auto;
    
    color: white;
    text-align: center;
    font-size: 1.5em;
}

.appimg {
    border-radius: 2em;
    transition: 0.7s ease;
    transform: scale(1.0);
}

.appicon:hover .appimg {
    transition: 0.7s ease;
    transform: scale(1.1);
}

.appicon:hover div {
    color: red;
}

#appgallery {
    overflow: visible;
    margin: 5%;
    
    display: grid;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}