* {
    margin: 0;
    padding: 0;
}
/* Style already inside*/
.attribution { 
    font-size: 16px; text-align: center; 
}
.attribution a { 
    color: hsl(228, 45%, 44%); 
}
/*Mine*/
html, body {
    height: 100%;
}
body {
    background-color: hsl(212, 45%, 89%);
    font-family: 'Outfit', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
section {
    max-width: 310px;
    display: flex;
    flex-direction: column; 
    background-color: hsl(0, 0%, 100%);
    border-radius: 16px;
    
}
section img {
    border-radius: 24px;
    padding: 15px;
}
section h1{
    color: hsl(218, 44%, 22%);
    text-align: center;
    font-size: 20px;
    padding : 10px 25px 15px 25px;
}

section p {
    color: hsl(220, 15%, 55%);
    font-size: 15px;
    padding : 5px 25px 30px 25px;
    text-align: center;
}
footer {
    position: fixed;
    bottom: 0 ;
    width: 100%;
}

@media screen and (max-width: 375px) {


}
