body {
    background-color: black;
    color: beige;
}

#projects {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.project {
    background-color: #171717;
    position: relative;
    width: 250px;
    min-height: 300px;
    border-radius: 5px;
    overflow: hidden;

    .title { 
        width: 100%;
        height: 100px;
        transition: all .5s;
    }
    
    p.title {
        position: absolute;
        top: 0;
        left: 0;
        text-align: center;
        align-content: center;
        margin: 0;
    }

    img.title {
        filter: blur(2px) brightness(20%);
        object-fit: cover;
    }
}

.project:focus {
    .title { height: 120px; }
}

.description {
    padding: 5px;
}

.links {
    display: flex;
    flex-direction: row;
    gap: 8px;
    position: absolute;
    top: calc(100% - 34px);
    justify-content: center;
    width: 100%;

    a {
        display: flex;
        height: 30px;
        align-content: center;
    }

    img {
        width: 30px;
    }
}
