body{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: black;
    color: white;
}


a{
    text-decoration: none;
    color: #000;
}

nav
{
    position: fixed;
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 70px;
    line-height: 70px;
    color: black;
    background: rgb(255, 255, 255);
    padding-inline: 10vw;
    transition: 0.3s;
    z-index: 100;

}

.nav-home{
    display: flex;
    column-gap: -30px;
}

.contain
{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 81vh;
    flex-direction: column;
    width: 100%;
    padding-left: 20px;
    margin-top: 10%;
}


.row
{

     margin: 2%;
}


.project
{
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin: 2%;
    border: 9px solid rgb(255, 255, 255);
    border-radius:10%;
    left: 0%;
    padding: 0%;
}


.wraper
{
    position: relative;
}
.wraper img
{
    width: 100%;
    height: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.wraper:hover img{
    transform: scale(1.2);

}


.project-overlay{
      position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.65) ;
  transition: opacity 0.5s ease;
  text-align: center;
  padding: 15px;

}
.wraper:hover .project-overlay{
    opacity: 1;
}


.icon{
    position: absolute;
    color: aliceblue;
    right: 3%;
    top: 3%;
}


.bottom-foter{
    font-size: 14px;
    margin-top: 10px;
    color: white;
}



