body {
    width:100%;
    height:100vh;
    margin:0 auto;
    display:flex;
    justify-content: center;
    align-items: center;
    font-family:Outfit;
    background-color:hsl(212, 45%, 89%);
}

.container {
    display:flex;
    justify-content: center;
    align-items: center;
    width:80%;
    height:80%;
    background-color:hsl(212, 45%, 89%);
}
.box{
    width:40%;
    display:flex;
    flex-direction: column;
    text-align: center;
    background-color:hsl(0, 0%, 100%);
    justify-content: center;
    align-items:center;
    border-radius:5%;
}
.box img {
    border-radius:5%;
    width:95%;
    height:auto;
    margin-top:5%;
}
h2 {
    width:80%;
    margin-bottom: 0;
    font-size:1rem;
}
p{
    min-width:90%;
    font-size:0.5rem;
}
.attribution {
    font-size: 11px;
}
@media only screen and (min-width: 600px){
    .box {
        width:20%;
    }
    h2 {
        font-size:1.5rem;
    }
    p {
        font-size:1rem;
    }

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