@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

* {
    padding: 0%;
    margin: 0%;
}
html {
    box-sizing: border-box;
    font-family: "Outfit", serif;
    font-size: 62.5%;
    max-width: 1440px;
    height:; 
body {
    background: hsl(212, 45%, 89%);
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;

}
main{
    display: flex;
    flex-direction: column;
    justify-content: center;  
    background-color: white;
    vertical-align: baseline;
    width: 290px;
    padding: 10px;
    border-radius: 15px;
    position: absolute;
    top: 10%;
    box-shadow: 0 0 10px 0 hsl(0, 0%, 0%, 0.1);
    color: hsl(218, 44%, 22%)
}
h1, p { 
    text-align: center;
    margin: 15px 10px;
}
p {
    font-size: 1.5rem;
}
img {
    border-radius: 20px;
    width: "290px"
}
.attribution { 
    font-size: 11px; text-align: center;
}
.attribution a { 
    color: hsl(228, 13%, 62%); 
}
footer {
    position: absolute;
    bottom:0%;
    width: 100%;
}
