* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: #151320;
    height: 100vh;
    font-family: 'Poppins', sans-serif;
    
}

#projects {
    height: 100%;
    width: 100%;

    .heading {
        color: #ffffff;
        padding-top: 3em;
        padding-bottom: 2em;
        font-weight: 600;
        text-align: center;
    }

    .cards {
        position: relative;
        display: grid;
        grid-template-columns: repeat(auto-fit, 20em);
        padding: 2em;
        grid-gap: 3em;
        width: 100%;
        justify-content: center;
        align-items: center;

        .card {
            background-color: #1c1b29;
            border-radius: 2em;
            box-shadow: 0 0 3em rgba(0, 0, 0, 0.18);
            height: 100%;

            a {
                display: block;
                width: 100%;
                height: 100%;
                text-decoration: none;
            }
    
            .img-container {
                height: 350px;

                img {
                    width: 100%;
                    height: 100%;
                    border-radius: 1.3em 1.3em 0 0;
                }
            }
            
            .details {
                padding: 1.5em 1.4em;

                h3 {
                    color: #ffffff;
                    font-weight: 600;
                    font-size: 18px;
                    margin: 0.6em 0 0.8em 0;
                }
                
                p {
                    color: #a0a0a0;
                    font-size: 15px;
                    line-height: 25px;
                    font-weight: 400;
                }   
            }
        }
    }
}