.app-card{
    background: linear-gradient(to right, rgba(255, 255, 255, 0.3), rgba(0, 128, 128, 0.3));
    box-shadow: 5px 5px 40px black;
    width: 70%;
    min-width: fit-content;
    height: 500px;
    min-height: fit-content;
    margin: 100px auto;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    text-align: center;
    border-radius: 15px;
}

.app-card h2{
    margin: 0;
    padding: 0;
    font-size: 1.7em;
    color: whitesmoke;
    text-shadow: 3px 4px 5px teal;
}

.app-card img{
    height: 350px;
    width: auto;
    margin: 50px auto;
    border-radius: 10px;
}

.app-card a{
    text-decoration: none;
    color: rgb(0, 71, 71);
    font-weight: 700;
    text-shadow: 4px 4px 15px teal;
}

.app-card a:hover{
    text-decoration: none;
    color: rgb(9, 102, 102);
    font-weight: 700;
    text-shadow: 4px 4px 15px teal;
}

@media screen and (max-width: 480px) {
    .app-card{
        width: 70%;
        min-width: fit-content;
        height: 350px;
        min-height: fit-content;
        margin: 100px auto;
        padding: 30px 20px;
    }

    .app-card h2{
        font-size: 1.2em;
    }

    .app-card img{
        height: 150px;
        width: auto;
        margin: 50px auto;
    }
}
