@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');




.title{
    display: flex;
    justify-content: center;
    color: #0015ff;
    font-size: 2.5em;
    font-weight: 800;

}



.content {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.card {
    background-color: #ffffff;
    width: 19em;
    box-shadow:  0 5px 25px rgb(1 1 1 /35%);
    border-radius: 10px;
    padding: 25px;
    margin: 15px;
    transition:  0.8s ease;
   margin-bottom: 30px;


}

 .card:hover {
    transform: scale(1.1);
 }

 .info  {
    text-align: center;
 }

 .info h3 {
    color: #002aff;
    font-size: 1.5em;
    font-weight: 700;
    margin: 15px;
 }
 
.footer{
   background-color: #000016;
   color: #f9f9f9;
   padding: 2em;
   display: flex;
   justify-content: space-between;
   margin: 1px;
}


body {
   margin: 0px;
   padding: 0;
   height: 100vh;
   background-color: #000;
   background-image: linear-gradient(-45deg, #fc5c7d, #6a82fb, #05dfd7);
   background-size: 400% 400%;
   animation: gradientAnimation 15s ease infinite;
 }
 
 @keyframes gradientAnimation {
   0% {
     background-position: 0% 50%;
   }
   50% {
     background-position: 100% 50%;
   }
   100% {
     background-position: 0% 50%;
   }
 }
