:root
{
}


*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body
{
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: hsl(212, 45%, 89%);
}

main
{
    width: 190px;
    height: 300px;
    border-radius: 12px;
    background-color: hsl(0, 0%, 100%);
}

img
{

    width: 174px;
    height: 170px;
    display: block;
    margin: 8px auto;
    border-radius: 8px;
}

main h1
{
    font-size: 14px;
    text-align: center;
    font-family: Outfit;
    color: hsl(218, 44%, 22%);
}

p
{
    font-size: 10px;
    margin-top: 12px;
    text-align: center;
    font-family: Outfit;
    color: hsl(220, 15%, 55%);
}

div
{
    bottom: 10px;
    font-family: Outfit;
    position: absolute;
}

div a, div a:visited
{
    color: hsl(220, 15%, 55%);
    text-decoration: none;
}

div a:hover
{
    color: black;
    transition: 0.5s;
}
