.keyloggers{
    display: grid;
    gap: 20px;
    grid-auto-rows: min-content;
    grid-template-columns: repeat(3, minmax(50px, 1fr));
    grid-template-rows: repeat(2, min-content);
    height: min-content;
}
.keyloggers .child{
    border: 1px solid hsla(280, 100%, 5%);
    background: linear-gradient(225deg, rgba(0, 0, 0, 0.3) 0%, rgb(0, 0, 0) 100%);
    display: flex;
    transition: all .1s cubic-bezier(0, 0, 1, 1);
    flex-flow: column;
    gap: 0;
    overflow: hidden;
}
.keyloggers .child:hover{
    background-color: hsla(270, 100%, 60%, 0.3);
}
.keyloggers .child img{
    width: 100%;
    object-fit: contain;
    height: 100%;
}
.keylogger-image{
    aspect-ratio: 333/259;
    display: flex;
    align-items: center;
    padding: 16px;
    mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 37.3874%);
    background-color: rgb(7, 0, 10);
    overflow: hidden;
}
.keylogger-info{
    display: flex;
    flex-flow: column;
    gap: 16px;
    padding: 20px;
}
.keyloggers .child button{
    width: 100%;
    height: 40px;
    font-weight: 500;
    font-size: 15px;
    color: white;
    border: none;
    outline: none;
    cursor: pointer;
    background-color: hsl(270, 100%, 60%);
    border-radius: 4px;
    box-shadow: hsla(270, 100%, 60%, 0.35) 1px 2px 12px 0px;
}
.keylogger-info p:nth-child(1){
    font-weight: 500;
    font-size: 17px;
}
.keylogger-info p:nth-child(2){
    font-size: 16px;
    line-height: 1.4em;
    color: hsl(0, 0%, 100%, 0.7);
}
.keylogger-info p:nth-child(3){
    font-weight: 500;
    font-size: 17px;
}

/* responsive design */
@media (min-width:810px) and (max-width:1199.98px){
    .keyloggers{
        grid-template-columns: repeat(2, minmax(50px, 1fr))
    }
}
@media (max-width:809.98px) {
    .keyloggers{
        grid-template-columns: repeat(1, minmax(50px, 1fr))
    }
}