@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    
}
body{
    background-color: hsl(47, 88%, 63%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;

    font-family: "Figtree", sans-serif;
}
main{
    min-height: 18rem;
    background-color: hsl(0, 0%, 100%);
    padding: 1.5rem;
    border: 1px solid black;
    width: 43vh;
    border-radius: 18px;
    box-shadow: 0.7rem 0.7rem 0 hsl(0, 0%, 7%);
}
.image{
    margin-bottom: 0.5rem;
    width: 100%;
    border-radius: 16px;
}
.persons{
    width: 2rem;
    height: 2rem;
}
.btn{
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
    width: 5rem;
    background: hsl(47, 88%, 63%);
    border-radius: 0.3rem;
}
.btn span{
        font-weight: bold;
}
p{
    font-size: 1rem;
    font-weight: 31.25rem;
    color: hsl(0, 0%, 42%);
}
h1{
    font-size: 1.4rem;
    font-weight: 50rem;
}
p,h1{
    margin-bottom: 1rem;
}
.person{
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.names span{
    font-weight: bold;
}
.title{
    margin-bottom: 1rem;
}
.title span{
color: hsl(0, 0%, 7%);
}