*,*::before,*::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    font-family: 'Outfit';

}
body{
    position: relative;
    min-height: 100vh;  
    background-color: hsl(212, 45%, 89%);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
img{
    width:19rem;
    margin-bottom: 1rem;
    margin-right: 4rem;
    border-radius: .5rem;
    margin: 0,auto;
}
.card{
    width: 22rem;
    background-color: #fff;
    padding: 1rem;
    padding-left:1.5rem;
    border-radius: 1.5rem;
}   
h1{
    text-align: center;
   font-size: 1.5rem;
   margin-bottom: .5rem;
}
p{
    color:hsl(220, 15%, 55%);
    text-align: center;
    font-size: 1.1rem;
}
footer{
    position: absolute;
    bottom: 0;
}