* {
    font-family: 'Poppins', sans-serif;
}
body {
    width: 1920px;
    margin:0 auto;
}

main {
    margin:0 143px;
}

/* navigation */
.nav-head {
    padding:0 90px;
}

.nav-head .nav-link{
    margin-top: 25px;
    margin-right: 87px;
    color: #2E266F;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.nav-head .nav-link:hover {
    text-decoration: underline;
    color:#2E266F
}

/* profile box */
.profile {
    margin-top: 28px;
    display: flex;
    border-left: 7px solid #EFC81A;
    height:77px;
    align-items: center;
    justify-content: space-evenly;
    padding: 10px;
}

.img-circle {
    margin-right: 28px;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 44px;
    background: url('../img/Ellipse\ 128.jpg'), lightgray 50% / cover no-repeat;
    background-position: center;
    background-size: cover;
}

.profile span{
    align-items: center;
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height:normal;
    text-transform: capitalize;
}

.profile span a {
    font-weight: 700;
}

/* header */
header {
    margin-top:100px;
}

header .profile {
    margin-top: 0;
}

.profile span span {
    font-weight: 700;
}

.detail {
    justify-content: start;
}

.stats {
    margin-top: 24px;
}

.stats h5 {
    font-size: 24px;
    text-align: end;
    font-weight: 500;
}
/* content */

.title {
    font-size: 72px;
    font-weight: 500;
    color: #2E266F;
    padding:60px 0;
}

.recipe-img {
    text-align: center;
    width: 1082px;
    height: 700px;
    background-color: red;
    background-image: url(../img/Rectangle\ 313.jpg);
    background-position: center;
    background-size: cover;
}

.ingredients {
    padding:100px 0 ;
}

.ingredients h5{
    font-size: 48px;
    font-weight: 500;
}

.ingredients p {
    font-size: 36px;
}

.icon .button {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    display:inline-block;
    margin: 0 10px 50px 0;
}

.icon .bookmark{
    background-color:#EFC81A ;
    background-image: url(../img/bookmark.svg);
    background-position: center;
    background-size:32px;
    background-repeat: no-repeat;
}

.icon .like{
    background-color: #fff;
    border:1px solid #EFC81A;
    background-image: url(../img/Vector.svg);
    background-position: center;
    background-size:30px;
    background-repeat: no-repeat;
}

.comment-text {
    font-size: 24px;
    font-weight: 500;
}

.comments-area {
    flex-direction: column;
    align-items:start;
    border-top:3px solid #EFC81A ;
    border-bottom:3px solid #EFC81A ;
    padding:60px 0;
    row-gap: 25px;
    margin-bottom: 30px;
}

.comment {
    align-items: center;
}

.comment .profile {
    margin-top: 0;
    padding-right: 20px;
    border-left: none;
    border-right: 3px solid #EFC81A;
    margin-right: 20px;
}

.form-floating {
    margin:37px 0;
}

#form-comment {
    width: 813px;
    height: 252px;
    border-radius: 15px;
    background: #F6F5F4;
    border: none;
}

.btn-comment {
    padding: 22px 148px;
    font-size: 16px;
    background-color: #FFB167;
    border-radius: 5px;
    color:#fff;
    border:none;
    margin-bottom:100px;
}

.btn-comment:hover {
    background-color: #FFB167;
}

/* footer */
footer {
    margin-top: 100px;
    background-color:#EFC81A ;
    padding:247px;
}

footer h1 {
    color: #2E266F;
    text-align: center;
    font-size: 72px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    text-transform: capitalize;
    margin-bottom:60px;
}

footer p {
    color: #707070;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-transform: capitalize;
}

.nav-footer{
    background-color: #EFC81A;
}

.nav-footer .nav-link {
    color: #707070;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; 
    text-transform: capitalize;
    margin-bottom: 50px;
}