body {
    margin: 0%;
    background-color: black;
    color: white;
    font-weight: 300;
}

  
h1, h2 {
    font-weight: 100;
}
.top1 {
    text-align: center;
}
.category {
    padding-left: 10%;
}
.contents {
    padding-left: 10%;
    padding-right: 10%;
    display: flex;
    flex-wrap: wrap;
}
.apps {
    margin-top: 1%;
    margin-bottom: 1%;
    width: 45%;
    padding: 1%;
    font-size: 110%;
    border-left: #ffffff solid 10px;
    border-bottom: #fff solid 2px;
    margin-right: 1%;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}
.apps a {
    color: #fff;
    text-decoration: none;
}
.apps img {
    width:40%;
    padding-right: 2%;
    float: left;
}

.apps:hover {
    border-left: #00fff2 solid 10px;
    border-bottom: #00fff2 solid 2px;
    z-index: 2;
    transform: scale(1.05); 
}

@media screen and (max-width: 980px) {
.apps {
    width: 100%;
}
}