.content{
  margin-top: 40px;
  font-family: "Poppins", sans-serif;
}

h1{
  font-weight: 600;
  font-size: 30px;
  text-align: center;
  margin-bottom: 40px;
}

h1 span{
  color: #00AFD8;
}

.card-unit{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background-color: white;
  border: 1px solid rgb(238, 238, 238);
  border-radius: 10px;
  padding: 25px 10px;
  text-decoration: none;
  transition: scale 0.3s ease;
}

.card-unit:hover{
  scale: 1.03;
}

.card-unit p{
  margin-bottom: 0;
}

.card-unit .unit-name{
  font-size: 22px;
  font-weight: 600;
  color: rgb(65, 65, 65);
  text-align: center;
}

.card-unit .ikm{
  background-color: #D6DE22;
  font-size: 40px;
  font-weight: 700;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  justify-content:center;
  align-items: center;
  color: rgb(51, 51, 51);
}

.card-unit .keterangan{
  font-size: 17px;
  font-weight: 600;
  color: #3ab907;
}




@media (max-width: 480px) {
  h1{
    font-size: 20px;
  }

  .card-unit{
    gap: 10px;
    padding: 15px 10px;
  }

  .card-unit .unit-name{
    font-size: 17px;
    font-weight: 600;
  }
  
  .card-unit .ikm{
    font-size: 30px;
    font-weight: 700;
    width: 100px;
    height: 100px;
  }
  
  .card-unit .keterangan{
    font-size: 14px;
  }
}