@font-face{
    font-family:'Outfit';
    src: url('fonts/Outfit-Regular.ttf');
    font-weight: 400;
    font-style: normal;
}

@font-face{
    font-family:'Outfit';
    src: url('fonts/Outfit-Bold.ttf');
    font-weight: 700;
    font-style: bold;
}

@font-face{
    font-family:'Outfit';
    src: url('fonts/Outfit-Light.ttf');
    font-weight: 400;
    font-style: normal;
}
body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: hsl(212, 45%, 89%);
}

.img-wrapper-background * {
    background-color: hsl(0, 0%, 100%);
}

.img-wrapper-background {
    display: flex;
    flex-direction: column;
    background-color: hsl(0, 0%, 100%);
    width: 250px;
    border: 5px solid white;
    padding: 1rem;
    height: 400px;
    box-sizing: content-box;
    margin-bottom: 40px;
    border-radius: 1rem;
}

.img-wrapper-background img {
    max-width: 100%;
    max-height: 100%;
    align-self: center;
    justify-self: flex-start;
    border-radius: 1rem;
    margin-bottom: 1px;
}

.img-wrapper-background #boldText {
    font-family: 'Outfit';
    font-weight: 700;
    color: hsl(218, 44%, 22%);
}

.img-wrapper-background #subText {
    font-family: 'Outfit';
    font-weight: 400;
    color: hsl(216, 15%, 48%);
}

.attribution { font-size: 11px; text-align: center; }
.attribution a { color: hsl(228, 45%, 44%); }