@charset "utf-8";

.box1{
    justify-content: center;
    align-items: center;
    max-width:250px;
}
.projectimgwrapper {
    position: relative;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    border-radius: 20%;
    object-fit: cover;
    width: 250px;
    height: 250px;
}

.box1 img {
    display: block;
    width: 250px;
    height: 250px;
    border-radius: 10%;
    object-fit: cover;
}

.projectname {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 10%;
    opacity: 0;
    transition: 0.6s;
}

.projectname:hover {
    opacity: 1;
}

.projectname p {
    font-size: 20px;
    color: #fff;
    font-weight: bold;
}

.projectname>* {
    transform: translateY(25px);
    transition: transform 0.6s;
}

.projectname:hover>* {
    transform: translateY(0px);
    transition: transform 0.6s;
}