body {
    font-family: "Arial", sans-serif;
}
.row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 80%;
}
.col-md-3 {
    flex: 1;
    margin: 10px;
    position: relative;
    overflow: hidden;
    padding-top: 10%; /* This gives a 1:1 aspect ratio */
}
.col-md-3 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.fas, .fab {
    color: rgb(0, 119, 255);
}
.fas:hover, .fab:hover {
    color: lightblue;
}

.img-fluid {
    border-radius: 50px;
}
.project-tile {
    width: 45%;
    padding: 20px;
    margin: 2.5%;
    background-color: #06276d;
    border-radius: 15px;
    transition: transform .2s;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px 10px rgba(0,0,0,0.2);
    background: linear-gradient(45deg, #061c6d, #47cbff);
    perspective: 1000px;
  }
.project-tile:hover {
    transform: scale(1.05);
}
    

@keyframes gradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  
  body {
    background: linear-gradient(-45deg, #0011ff, #000000, #0026b0, #0cabba);
    background-size: 400% 400%;
    animation: gradient 10s ease infinite;
  }  
