*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}
body{
    background-color: hsl(47, 88%, 63%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

img{
    width: 100%;
    border-radius: 10px;
}

.container{
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: white;
    max-width: 360px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: black solid 1px;
    border-radius: 15px;
    box-shadow: 10px 10px;
}

.main-section{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

h1{
    background-color: hsl(47, 88%, 63%);
    width: 25%;
    padding: 6px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
}

h2{
    font-size: 16px;
    font-weight: 600;
}

h3{
    font-size: 24px;
    font-weight: 800;
}

p{
    color: rgb(105, 104, 104);
    line-height: 1.5;
    font-size: 16px;
}


footer{
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar{
    width: 30px;
    height: 30px;
}

