@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Jost:ital wght@0,100..900;1,100..900&family=Outfit:wght@100..900&display=swap');

:root {
    --bg-color: hsl(212, 45%, 89%);
    --heading-color: hsl(218, 44%, 22%);
    --text-color: hsl(216, 15%, 48%);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.container {
    justify-self: center;
    align-self: center;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    background-color: hsl(0, 0%, 100%);
    width: 295px;
    height: 450px;
    border-radius: 15px;
    padding: 10px 10px 20px 10px;
}

.image-content img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.text-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    padding: 0 16px;
}

    .text-content h1 {
        font-size: 1.3rem;
        font-weight: 700;
        text-align: center;
        color: var(--heading-color);
        margin-top: 20px;
    }

    .text-content p {
        font-size: 15px;
        color: var(--text-color);
        font-weight: 400;
        line-height: 1.1;
        margin-top: 5px;
    }


.attribution { 
    position:fixed;
    bottom: 20px;
    font-size: 11px; text-align: center; 
}

.attribution a { 
    color: hsl(228, 45%, 44%); 
}
