html {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
    box-sizing: border-box;
}
body {
    background-color: hsl(47, 88%, 63%);
    font-family: figtree, sans-serif;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    
   
}
.card {
    background-color: hsl(0, 0%, 100%);
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    align-items: center;
    height: 32.625rem;
    width: 24rem;
    filter: drop-shadow(10px 10px 0px rgba(0, 0, 0, .75));
    border: 1px solid black;
}
.image img {
   border-radius: 30px;
   padding: 16px;
   margin-top: 8px;
}
.text-container {
    letter-spacing: 0px;
    line-height: 150%;
    width: 21rem;
    height: 12.125rem;
}
.text-container button {
    background-color: hsl(47, 88%, 63%);
    height: 29px;
    width: 82px;
    border-radius: 5px;
    border: none;
    font-size: 0.938rem;
    font-weight: 700;
}
.text-container h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(0, 0%, 7%);
}
.text-container h1:hover {
    color: hsl(47, 88%, 63%);
    cursor: pointer;
    transition-duration: .5s;
    transition-timing-function: ease-in-out;
    transition-delay: 0.2s;
    transform: scale(1.03);
}
.text-container #para {
    font-size: 0.938rem;
    font-weight: 400;
    color: hsl(0, 0%, 42%);
}
.author {
    display: flex;
    align-items: center;
    margin-top: 16px;
}
.author img {
    border-radius: 50%;
    margin-right: 16px;
    max-height: 32px;
    max-width: 32px;
    filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, .75));
}
.author p {
    font-size: 1rem;
    font-weight: 700;
    color: hsl(0, 0%, 7%);
}
.attribution {
    font-size: 0.75rem;
    position: absolute;
    bottom: 0;
    text-align: center;
}

@media screen and (max-width: 375px) {
    .card {
        width: 20rem;
        height: auto;
        margin: 1rem;
        padding-bottom: 1rem;
        max-width: 20rem;
    }
    .image img {
        width: 100%;
        height: auto;
        max-width: 18rem;
    }

    .text-container {
        width: 18rem;
        height: auto;
        padding: 0 1rem;
    }

    .text-container h1 {
        font-size: 1.25rem;
    }

    .text-container #para {
        font-size: 0.875rem;
    }
    .text-container button {
        font-size: 0.875rem;
        
    }
    .author {
        padding: 0 1rem;
    }
    }