<div class="card">
  <div class="card-icon">⬛</div>
  <div class="card-title">Website Development</div>
  <div class="card-text">
    I throw myself down among the tall grass by the stream as I lie close to the earth.
  </div>
</div>

<style>
  .card {
    width: 300px;
    padding: 20px;
    background: linear-gradient(135deg, #ff4b5c, #ff6584);
    color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: left;
    transition: background 0.3s ease;
  }

  .card:hover {
    background: #ff0000; /* Raudona spalva užvedus pelę */
  }

  .card-icon {
    font-size: 40px;
    margin-bottom: 20px;
    transition: transform 0.5s ease;
  }

  .card-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    transition: transform 0.3s ease, color 0.3s ease;
  }

  .card-text {
    font-size: 14px;
    line-height: 1.6;
    transition: color 0.3s ease;
  }

  /* Animacijos efektai užvedus pelę */
  .card:hover .card-title {
    color: #ffffff; /* Teksto spalva tampa balta */
    transform: scale(1.1); /* Tekstas šiek tiek padidėja */
  }

  .card:hover .card-text {
    color: #f3f3f3; /* Tekstas tampa šviesesnis */
  }

  .card:hover .card-icon {
    transform: rotate(360deg); /* Ikona apsisuka */
  }
</style>
Skambink dabar