.appListing {
    display: flex;
    flex-direction: row;
    background-color: rgba(0,0,0,0.05);
    min-height: 200px;
    align-items: center;
    padding: 0.5% 1% 0.5% 1%;
}

.appDesc {
    padding: 1% 1% 1% 3%;
}

.appDesc h1 {
    width: fit-content;
    padding: 2px;
    background-color: rgb(187, 201, 206);
    border-radius: 10px;
    border-style: outset;
    border-width: 2px;
}

.appDesc a:link, .appDesc a:visited, .appDesc a:hover, .appDesc a:active {
    text-decoration: underline;
    color: black;
}

.appDesc h2 {
    font-style: italic;
}

.appListing picture {
    display: flex;
    max-height: 200px;
    min-width: 33%;
}

.appListing img {
    cursor: pointer;
    border-style: solid;
    border-color: rgb(50, 65, 70);
    border-width: 5px;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 768px) {
    .appListing {
        flex-direction: column;
    }

    .appDesc {
        text-align: center;
    }

    .appDesc h1 {
        width: 80%;
        margin: auto;
    }
}

@media screen and (min-width: 769px) {
    .appListing {
        flex-direction: row;
    }

    .appDesc {
        text-align: left;
    }

    
}