@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Outfit:wght@100..900&display=swap');

body {
    background-color: hsl(47, 88%, 63%);
    font-family:Figtree;
    display: flex;
    justify-content: center;
    align-items: center;
    margin:auto; 
    height:100vh;
    flex-direction: column;
    color:#111111;
}

.container {
    background-color: hsl(0, 0%, 100%);
    width: min-content;
    box-shadow: 8px 8px #111111;
    border-radius: 20px;
    border-style: solid;
    border-width: 1px;
    border-color: #111111;
    padding:20px;
    margin:auto;

}

.container img {
    border-radius: 10px;

}

.learning{
    background-color: #F4D04E;
    border-radius:4px ;
    padding: 4px 12px;
    width: min-content;
}

.author{
    display: flex;
    align-items: center;
    width:100%;
    gap:12px;
}

.author img{
    height:32px;
    width:32px;
}

.text-preset-1{
    font-size:24px;
    line-height: 150%;
    letter-spacing: 0px;
    font-weight: 800;
}

.text-preset-2{
    font-size:16px;
    line-height: 150%;
    letter-spacing: 0px;
    color:#6B6B6B;
    
}

.text-preset-3{
    font-size:14px;
    line-height: 150%;
    letter-spacing: 0px;
    
}

.text-preset-3-bold{
    font-size:14px;
    line-height: 150%;
    letter-spacing: 0px;
    font-weight: 800;
}

a {
    color:inherit;
    text-decoration: none;
}


a:hover{
    color:#F4D04E;
}



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

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