main {
    margin-top: 60px;

}


.androidApps{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(calc(760px - 20vh), 1fr));
    gap: 5vh;
}

.androidAppCard{
    overflow: hidden;
    height: auto;
    display: flex;
    gap: 5vh;

    p {
        box-sizing: border-box;
    }

}
.appImg {
    height: 25vh;
    border-radius: 5vh;
    padding: 2vh;
    aspect-ratio: 1;
}

.androidAppCardContent{
    width: 100%;
}

.titleDiv {
    position: relative;
    z-index: 10;
    overflow: hidden;
    display: flex;
    margin-bottom: 5vh;

    div {
        max-width: 70%;
    }
    
    img {
        position:absolute;
        z-index: 1;
        width: 25%;
        max-width: 200px;
        aspect-ratio: 1;
        right: 0;
        top: 5%;
    }
}

@media (min-width: 1024px) {
    #titleDiv img{
        width: unset;
        height: 150%;
    }
}


@media (max-width: 768px) {
    .androidApps{
        display: flex;
        flex-direction: column;
        margin: 0;
        gap: 5vh;
    }
    .androidAppCard{
        padding: 2vh;
        flex-direction: column;
        align-items: center;
    }
    img {
        height: 20vh;
    }
}

@media (min-width: 1440px) {
    .androidAppCard{
        padding: 2vh;
    }
}