:root {
    --bg-color:#111111;
    --second-bg-color: #151515;
    --text-color: white;
    --main-color: #04fffb;
}
body{
    background: var(--bg-color);
    color: var(--text-color);
}
img {
    width: 300px;
    height: 300px;
    border-radius: 2rem;
    box-shadow: 0 0 1rem var(--bg-color);
    transition: all 0.3s ease;
}
img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 50px var(--main-color),
                 0 0 10px var(--main-color);
}
img:hover h1 {
    display: flex;
}
article > h1 {
    display: none;
}
.project-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
}
.project-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 50px; 
    gap: 50px;
}