@import url('https://fonts.googleapis.com/css2?family=Parkinsans:wght@300..800&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');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", serif;
}

body{
    background-image: url(kacau.jpeg);
    background-size: cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 100px;
}

.acseone{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    font-size: 100px;
}

.name{
    font-size: 25px;
    font-weight: 600;
    margin-top: 2%;
    color: black;
}

.bio{
    font-size: 16px;
    color: black;
    font-weight: 400;
}

.item-class{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 450;
    gap: 15px;
    margin-top: 20px;
}

.item{
    background-color: whitesmoke;
    padding: 1rem;
    width: 325%;
    text-align: center;
    color: #0C2556;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

.item:hover{
    transform: scale(1.03);
    background-color:#FFCCE1;
}

@media screen and (max-width: 465px){
    .item-list{
        width: 90%;
    }
}

