*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    padding: 1rem;
    min-height: 100vh;
    background-color:  hsl(212, 45%, 89%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    font-family: Verdana, Geneva, Tahoma, sans-serif;

}
.card{
    padding: 1em;
    background-color: hsl(0, 0%, 100%);
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    width: min(94%, 300px);
    box-shadow: 0px 0px 60px  hsl(216, 10%, 68%);
    
}
.card img{
    max-width: 100%;
    border-radius: 1em;
    box-shadow: 0px 3px 30px hsl(216, 10%, 68%);
}
.card .title{
    text-align: center;
    border-radius: 0.5em;
    font-weight: 700;
    color: hsl(218, 44%, 22%);
    padding: 0.5rem;
    
    text-shadow: 0px 0px 10px hsl(216, 10%, 48%);
}

.card .description{
    text-align: center;
    font-size: 15px;
    font-weight: 400;
    border-radius: 0.5em;
    padding: 0.5em;
    
    text-shadow: 0px 0px 10px hsl(216, 10%, 58%);

}
footer{
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}
footer a{
    color: blue;
    border-bottom: none;
    text-decoration: none;
}

footer a:hover{
    border-bottom: 1px solid rgb(43, 43, 166);
    box-shadow: 0px 5px  10px hsl(240, 59%, 71%);

}