.project{
    width: 700px;
    cursor: pointer;
}
.projects{
    margin-top: 100px;
}
.heading{
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
}
.frameworks{
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.framework{
    color: grey;
    font-size: 15px;
}
.information-1,.information-2,.information-3,.information-4{
    margin-top: 30px;
    display: none;
}
.description{
    width: 400px;
    margin: auto;
    font-size: 16px;
    margin-bottom: 20px;
}
h1{
    color: #A39287;
    margin-top: 70px;
    text-align: center;
    
}
.My-renders{
    margin-top: 150px;
    color: #A39287;
}
.scroll-container{
    padding: 100px;
    display: flex;
    width: 100%;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex-grow: unset;
}
.image-wrapper{
    text-align: center;
    color: rgba(0, 0, 0, 0);
    width: 400px;
    margin: 40px;
    transition: all 0.4s;
}
img{
    width:100%;
    border-radius: 10px;
}
.image-wrapper:hover{
    font-size: larger;
    font-weight: 100;
    color: #6d625a;
    opacity: 100%;
    z-index: 1000;
    transform: scale(1.5);
}

@keyframes opacity {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 100%;
    }
}

@media screen and (max-width:700px){
    .project{
        width: 300px;
    }
    .Project-title{
        font-size: 26px;
    }
    .framework{
        font-size: 13px;
    }
    .description{
        width: fit-content;
        text-align: center;
    }
    .scroll-container{
        padding:30px;
    }
}