@font-face {
    font-family: Figtree-Medium;
    src: url(assets/fonts/static/Figtree-Medium.ttf);
}
@font-face {
    font-family: Figtree-Bold;
    src: url(assets/fonts/static/Figtree-ExtraBold.ttf);
}
*{
    margin: 0;
    padding: 0;
    background-color: hsl(47, 88%, 63%);
}
body{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Pushes mid and attribution apart */
    align-items: center;
}
.main_box{
    display: flex;
    flex-direction: column;
    padding: 1em;
    background-color: white;
    border-radius: 1em;
    width: 21em;
    justify-content: space-evenly;
    border: 10px solid black;
    border-top: 2px solid black;
    border-left: 2px solid black;

}
.image{
    background-color: white;
    width: fit-content;
    margin-bottom: 1em;
}
.image img{
    border-radius: 1em;
}
.higlighted_text{
    font-family: Figtree-Bold;
    background-color: hsl(47, 88%, 63%);
    padding-bottom: 0.3em;
    padding-top: 0.3em;
    line-height: 150%;
    font-size: 1em;
    padding-left: 1em;
    padding-right: 1em;
    border-radius: 0.5em;
    width: fit-content;
}
.date{
    background-color: white;
    margin-top: 1em;
    margin-bottom: 1em;
    font-family: Figtree-Medium;

}
.title{
    background-color: white;
    font-family: Figtree-Bold;
    font-weight: 700;
    font-size: 1.4em;
    color: #111111;
}
.text{ 
    background-color: white;
    font-family: Figtree-Medium;
    line-height: 150%;
    color: #6B6B6B;
    width: 100%;
    letter-spacing: 0;
    margin-top: 1em;
    margin-bottom: 1em;
}
.avatar{
    display: flex;
    background-color: white ;
    font-family: Figtree-Bold;
    color:#111111;

}
.avatar img{
    background-color: white ;
    transform: scale(0.7);
}
.avatar span{
    background-color: white;
    margin-top:1.5em;
    font-family: Figtree-Bold;
}
.home{
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mid{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.attribution a{
    text-decoration: none;
    font-family: Figtree-Bold;
    color: black;
}
.title:hover{
    color: hsl(47, 88%, 63%);
    cursor: pointer;
    transition: 0.1s;
}