* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: hsl(212, 45%, 89%);
    font-family: 'Outfit', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background: white;
    width: 300px;
    height: auto;
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}

.container img {
    width: 100%;
    border-radius: 10px;
}

.container h1 {
    color: hsl(218, 44%, 22%);
    font-weight: 700;
    font-size: 20px;
    margin: 20px 0 15px;
    padding: 0 16px;
    line-height: 1.3;
}

.container p {
    color: hsl(216, 15%, 48%);
    font-weight: 400;
    font-size: 15px;
    margin: 0 20px 20px;
}

@media (min-width: 1440px) {
    .container {
        max-width: 300px;
        padding: 15px;
    }

    .container h1 {
        font-size: 20px;
        margin: 24px 0 16px;
    }

    .container p {
        font-size: 13px;
    }
}

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

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