* {
    margin: 0;
}

body {
    background-color: hsl(47, 88%, 63%);
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.font {
    font-family: 'Figtree', sans-serif;
}

.card {
    background-color: white;
    width: 300px;
    height: 435px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: center;
    gap: 10px;
    box-shadow: 5px 6px 0px black;
    border: 1px solid black;
    overflow: hidden;


    .card-image {
        display: flex;
        padding: 15px;
    }

    .card-image img{
        width: 100%;
        border-radius: 10px;
    }

    .left {
        margin-right: auto;
        margin-left: 15px;
    }

   button {
    padding: 7px;
    background-color: hsl(47, 88%, 63%);
    border: none;
    border-radius: 5px;
    font-weight: 800;
    cursor: pointer;
   }

   p {
    margin-top: 3px;
    font-size: 13px;
    font-weight: 500;
   }

   h3 {
    font-weight: 800;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.5);
   }

   .grey {
    color: gray;
   }

   .card-footer {
    display: flex;
    align-items: center;
    margin-left: 10px;
    padding: 10px 15px;
    width: 100%;

    img {
        width: 50px;
        height: 40px;
    }
    
    p {
        font-weight: 800;
    }

   }
}