*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.main{
    width: 360px;
    margin: 2rem auto;
    height: 560px;
    box-shadow: 3px 3px 10px rgb(0, 0, 0, 0.2);
    border-radius: 50px;
    overflow: hidden;
}
.img{
    height: 250px;
    background-color: rosybrown;
}
.img img{
    width: 10cm;
    height: 8cm;
}
.content{
    text-align: center;
    border-bottom: 2px solid #e5e5e5;
    height: 250px;
    display: flex;
    justify-items: center;
    align-items: center;
    padding: 1rem;
}
.content h3{
    border-bottom: 1px solid #e5e5e5;
}
.content h1{
    margin: 1rem 0;
}
.content p{
    color: #9f9f9f;
}
.footer{
    display: flex;
    justify-content: space-between;
    background: coral;
    align-items: center;
    height: 60px;
}
.ft-l{
    display: flex;
    align-items: center;
    padding: 2rem;
}
.ft-l img{
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.ft-l p{
    margin-left: 0.5rem;
}
.ft-r{
    padding-right: 2rem;
}