* {
    box-sizing: border-box;
}

body {
    font-family: "Figtree";
    margin: 0px;
    background-color: hsl(47, 88%, 63%);

}

img {
    max-width: 100%;
}

main {
    display: flex;
    margin-top: 15%;
}

span {
    background-color: hsl(47, 88%, 63%);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 16px;    
}

h2{
    margin-bottom: 13px;
}

h1{
    margin: 15px 0px;
    font-size: 24px;
    font-weight: 800;
}

p{
    margin: 0px;
    font-weight: 400;
    line-height: 25px;
}

h1 + p{
    color: rgb(121, 121, 121);
    font-weight: 400;
    ;
}

/* class */

.container { 
    display: flex;
    flex-direction: column;
    width: 375px;
    margin: auto;
    background-color: white;
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 20px;
    border: 1px solid black;
    border-radius: 20px;
    box-shadow: 7px 7px;
}

.picture-caption{
    display: flex;
    align-items: center;
    margin: 20px 0px;
}

.picture-caption img{
    margin-right: 10px;
}

.picture-caption p{
    font-weight: 800;
    font-size: 14px;
}
/* id */

#logo{
    border-radius: 10px;
}

#picture{
    max-width: 30px;
}

    

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