*
{
    box-sizing: border-box;
    scroll-behavior: smooth;
}
body
{
    background-color: hsl(47, 88%, 63%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: "Figtree";
    margin: 0;
    position: relative;
}
main
{
    background-color: white;
    display: flex;
    flex-direction: column;
    width: 330px;
    box-shadow: 10px 10px 0px;
    padding: 18px;
    border-radius: 15px;
    border: solid 1.7px hsl(0, 0%, 7%);

}

button
{
    margin-top: 1rem;
    width: 80px;
    height: 30px;
    background-color: hsl(47, 88%, 63%);
    border-color: transparent;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
}
.profile
{
    display: flex;
    align-items: center;
    gap: 8px;
}

h2
{
    font-size: 23px;
    font-weight: 800;
    
}
h2:hover
{
    color: hsl(47, 88%, 63%);
    cursor: pointer;
}
h4
{
    font-weight: 600;
    color: hsl(0, 0%, 7%);
}
p
{
    color: hsl(0, 0%, 42%);
}
.prof-name
{
    color: black;
    font-weight: 900;
    font-size: 15px;
}


.prof-img
{
    height: 30px;
    padding-right: 6px;
}
.main-image
{
    border-radius: 10px;
}

footer
{
    position: fixed;
    bottom: 0;
}