body {
    font-family: 'Poppins', sans-serif;
       
    
    
}
















  .about1 {
    width: 100%;
    min-height: 250px;
    padding: 20px;
    border: 1px solid hsl(120, 53%, 88%);
    background-color: rgb(211, 240, 211);
    overflow: hidden;
    border-radius: 50px;
}

.h1about {
    text-align: center;
    font-size: 2rem;
}

.pword {
    font-size: 1.2rem;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
}

@media (max-width: 768px) {
    .h1about {
        font-size: 1.8rem;
    }
    .pword {
        font-size: 1rem;
        text-align: justify;
        max-width: 90%;
    }
}
.small-square {
    width: 30px;
    height: 30px;
    background-color: rgb(211, 240, 211); 
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 2.5s ease-in-out, transform 0.5s ease-in-out;
}


.card-hover:hover .small-square {
    opacity: 0;
    transform: translateY(0);
}


.card-hover {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    background-color: rgb(211, 240, 211); 
    border-radius: 30px;
}
.card-hover:hover {
    transform: scale(1.3);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.tech-img {
    width: 100px; 
    height: 100px; 
    object-fit: contain; 
    margin: 10px; 
  }

 

