@import url('https://fonts.googleapis.com/css2?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');
.body{
    overflow: scroll;
    background-color: black;
    font-family: "Poppins", sans-serif;
}
.liste{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 1rem;
}
.card{
    width: 22rem;
    height: auto;
    display: flex;
    background: #181818;
    border: #181818;
    border-radius: 10px;
    color: aliceblue;
    overflow: hidden;
    flex-direction: column;
}
.image{
    width: 22rem;
    height: 200px;
}
.image img{
    width: 100%;
    height: 100%;
    object-fit: cover; 
}
.info{
    width: -webkit-fill-available;
    padding: 0.8rem;
    height: 3rem;
}

a{
    text-decoration: none;
}
h1,h2,h3,h4{
    font-family: "Poppins", sans-serif;
}
.cardtext{
    display: flex;
    flex-direction: column;
    height: 100%;
}
.cardtext h4{
    margin: 0px;
}