:root {
    --corner-radius: 6px;
}
html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #F1F3F4;
    font-family: Arial, serif;
}
.main h1 {
    text-align: center;
}
.list {
    height: 100%;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}
.item {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-bottom: 24px;
}
.item .title {
    text-align: center;
    margin: 4px;
    color: #889E24;
    font-weight: bold;
}
.item .img {
    width: 256px;
    height: 256px;
}
.item .line {
    display: flex;
    flex-direction: row;
    gap: 1px;
}
.item .line a {
    text-align: center;
    padding: 4px 20px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all ease 0.5s;
}
.item .info {
    flex-grow: 1;
    height: 100%;
    background-color: #A3C626;
    border-radius: var(--corner-radius) 0 0 var(--corner-radius);
}
.item .apk {
    background-color: #889E24;
    height: 100%;
    border-radius: 0 var(--corner-radius) var(--corner-radius) 0;
}
.item .info:hover, .item .apk:hover {
    opacity: 0.8;
}

@media (max-width: 990px) {
    .item {
        padding-bottom: 24px;
    }
}
