body {
    font-family: 'Outfit', sans-serif;
    background-color: hsl(212, 45%, 89%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* makes sure container is vertically centered */
    margin: 0;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1{
    color: hwb(217 12% 68%);
    font-weight: 700;
    font-size: 20px;
    margin-top: 1px;
    text-align: center;
    line-height: 1.2;
   
    margin-left: 10px;
    margin-right: 10px;
}

p{
    font-size: 15px;
    color: hsl(218, 44%, 22%);
    font-weight: 400;
    margin-top: 1px;
 
     margin-left: 10px;
    margin-right: 10px;
}

.container {
    width: 320px;
    height: 420px;
    background-color: hsl(0, 0%, 100%);
    border-radius: 15px;
   
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    text-align: center;
    
}

.image {
    background-color: hsl(218, 44%, 22%);
    border-radius: 15px;
    
    width: 100%;
    height: 60%;
    overflow: hidden; 
    margin-bottom: 8px;
    flex-shrink: 0; 
}

.image img {
    width: 100%; 
    height: 100%;
    display: block;
    object-fit: cover;
    display: block;
}

.text {
    flex: 1; 
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    
    
}

.attribution {
    font-size: 11px;
    text-align: center;
    margin-top: 10px;
}

.attribution a {
    color: hsl(228, 45%, 44%);
}

@media screen and (min-width: 375px) and (max-width: 1440px) {
    /* You can add responsive tweaks here later */
}
