.body-position {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.body-size {
    width: 60%;
}

.subtitle {
    margin-top: 150px;
    display: flex;
    flex-direction: column;
}

.subtitle img {
    height: 400px;
    margin-bottom: 30px;
    margin-left: 30px;
    margin-right: 30px;
    border-radius: 8px;
}

.img-box {
    display: flex;
    justify-content: center;
    width: 100%;
}

.box-grey {
    border-radius: 8px;
    background-color: rgb(239, 239, 239);
    padding: 8px;
    margin-right: 30px;
}

.box-grey img {
    width: 15px;
    height: 15px;
}

.shortinfo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 30px;
}

.description {
    margin-bottom: 20px;
    border-bottom: 1px solid rgb(239, 239, 239);
    padding-bottom: 30px
}

.calculator {
    margin-bottom: 12px;
    font-size: 20px;
}

.calculator input {
    padding: 8px 10px;
    font-size: 16px;
}

.calculator button {
    background-color: rgb(252, 180, 25);
    border: none;
    color: white;
    padding: 10px 24px;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    margin: 4px 2px;
}

table {
    border-spacing: 0;
    width: 100%;
}

.ingredient-table tr:nth-child(even) td {
    text-align: center;
    padding: 8px;
}

.ingredient-table tr:nth-child(odd) td {
    background-color: rgb(239, 239, 239);
    text-align: center;
    padding: 8px;
}

.ingredient-table tr:nth-of-type(odd) td:last-child {
    border-radius: 0 8px 8px 0;
}

.ingredient-table tr:nth-of-type(odd) td:first-child {
    border-radius: 8px 0 0 8px;
}

.table-right {
    text-align: left !important;
}

.text {
    margin-bottom: 30px;
}

.profile {
    display: flex;
    align-items: center;
    margin-bottom: 150px;
    font-size: 25px;
}

.profile img {
    height: 100px;
    width: 100px;
    border-radius: 100%;
    margin-right: 50px;
}

@media (max-width: 1000px) {
    .body-size {
        width: 90%;
    }
    .shortinfo-mobile {
        flex-direction: column;
        justify-content: center;
        margin-bottom: 5px;
    }
    .box-grey-mobile {
        margin-right: 0;
    }
    .box-grey-mobile2 {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .calculator input {
        width: 20%;
    }
    .subtitle {
        margin-top: 100px;
    }
    .subtitle img {
        width: 90%;
        height: auto;
    }
}