#App_Section {
    display: flex;
    border: 2px solid;
    padding: 8px;
    background: #c7e1d0;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

#App_Section>* {
    padding: 4px;
    border: 1px solid;
    margin: 4px;
    background: #cacaf9;
    box-shadow: -3px 3px 6px 0px black;
}

#App_Section>a{
    text-decoration: none;
    color: unset;
    text-align: center;
    transition: 0.3s;
}

#App_Section>a:hover,#App_Section>a:focus{
    background: #f3bebe;
}

.appName{
    font-weight: bolder;
    font-size: 1.2rem;
}

.shortDescription{
    
}