.project_container {
    width: fit-content;
    width: 510;
    height: 660;

    background-size: 100%;
    background-position: center;

    box-shadow: inset 0 0 100px black;

    border-radius: 10px;

    transition-duration: 1s;
}

.project_container > a {
    text-decoration: none;
    color: white;
}

.project_content {
    width: 100%;
    height: 100%;

    transition-duration: 0.5s;

    opacity: 0%;

}

.project_content:hover {
    opacity: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.project_content > p {
    padding: 25px;
}

.project_title {
    font-weight: bold;
    font-size: 30px;
    text-align: center;
}

.project_container:hover {
    background-size: 150%;
}

.project_container > p {
    margin: 0;
}