@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400:700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root  {

    --white: hsl(0, 0%, 100%);
    --light-grey: hsl(212, 45%, 89%);
    --greyish-blue: hsl(216, 15%, 48%);
    --dark-blue: hsl(218, 44%, 22%);
 }


 img {
    max-width: 100%;
 }

body {
font-family: "outfit", sans-serif;
font-size: 15px;
background-color: var(--light-grey);
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
height: calc(100vh - 1px);
margin: 1.25rem;
 }

 .container {
    background-color: var(--white);
    padding: 1.25rem;
    border-radius: 0.625rem;
    box-shadow: 5px 5px 5px rgba(0,0,0,0,3);
    margin-bottom: 2rem;
    text-align: center;

 }

 .container img {
    border-radius: 15px;
    margin-bottom: 1rem;
 }

 .container h1 {
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.3;
 }

 .container p {
    color: var(--greyish-blue);
    text-align: center;
 }

.attribution {
    font-size: 12px;
    text-align: center;
    
}

.attribution a {
    color: hsl(228, 45%, 44%);
}

@media (min-width:500px) {
.container {
    width: 400px;
}
}

