body{
    background-color: #1a1a1a;
    text-align: center;
    color: aliceblue;
    font-family: "Parkinsans", sans-serif;
}
img{
    width: 150px;
    height: 150px;
    border-radius: 15px;
    transition: ease .2s;
    border: 5px solid transparent; 
}
img:hover{
    scale: 1.2;
    transition: ease .2s;
    border: 5px solid #45ffb8;
    cursor: pointer;
}
a {
    color: #67a1ff;
    transition: ease 0.2s;
    text-underline-offset: 10000px;
  }
  
  a:hover {
    color: #b8ffcd;
    transition: ease 0.2s;
  }