* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    color: #ABA9AD;
}

body {
    background-color:#121212;
}

.pg-title {
    background-color: #1F1F1F;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-weight: 500;
}

.btn {
    display: inline-block;
    background-color: #BB86FC;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    outline: 0;
    cursor: pointer;
    text-decoration: none;
}

.home-menu {
    padding: 20px;
    text-align: center;
}

    .home-menu a {
        display: inline-block;
    }

    .home-menu a:not(:last-child) {
        margin-bottom: 15px;
    }

.listing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
}    

    .box {
        padding: 15px;
        background-color: #433E47;
    }
        
        .box .title {
            color: #BB86FC;
            font-weight: 500;
            margin-bottom: 15px;
        }

        .box .detail:not(:last-child) {
            margin-bottom: 15px;
        }

        .box .detail .detail-title {
            color: #E9E9EA;
        }

        .box .detail a {
            color: #03DAC6;
        }

        .box .detail p {
            word-break: break-all;
        }

@media only screen and (max-width: 1000px) {
    .listing {
        grid-template-columns: repeat(2, 1fr);
    }
}    

@media only screen and (max-width: 700px) {
    .listing {
        grid-template-columns: repeat(1, 1fr);
    }
}   
        