body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}

a {
    text-decoration: none;
    color: inherit
}

.whole,
header,
.sec1,
.prt1,
.prt1>.name,
.prt2,
.prt3,
.prt3>div,
.prt4,
.prt4>.box1,
.prt4>.box2,
.prt4>.box2>div,
footer,
footer>div,
footer>div>.wb {
    display: flex;
    align-items: center;
    justify-content: center;
}

.whole {
    width: 100%;
    flex-direction: column;
    padding-top: 80px;
}

header {
    position: fixed;
    top:0;
    left:0;
    z-index: 1;
    width: calc(100% - 20px);
    background-color: rgba(255, 255, 255, 0.973);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.641);
    padding: 2px 10px;
    flex-direction: row;
    justify-content: space-between;
}

header>img {
    width: 110px;
    object-position: center;
    object-fit: contain;
}

.sec1 {
    gap: 10px;
}

.sec1>img {
    width: 25px;
    height: 25px;
}

.sec1>a {
    font-size: 17px;
}

.prt1,
.prt4,
.prt5 {
    background-image: url("./img/coffee.jpg");
    width: 100%;
    min-height: 89vh;
    background-size: cover;
    position: relative;
}

.prt1>.name {
    position: absolute;
    right: 15%;
    flex-direction: column;
}

.name>h1 {
    color: white;
    font-size: 50px;
}

.prt2 {
    flex-direction: column;
    padding:70px 0;
}

.prt2>h1 {
    color: rgb(97, 8, 8)
}

.prt2>p {
    font-size: 25px;
    color: rgb(130, 51, 51);
}

.prt3 {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 50px;
padding-bottom: 70px;
}

.prt3>div {
    flex-direction: column;
}

.prt3>div>h2 {
    text-align: center;
    font-size: 25px;
    color: rgb(102, 67, 19);
}

.prt4 {
    background-image: url("./img/paper.jpg");
    flex-direction: column;
    color: rgb(72, 34, 13);
}

.prt4>.box1 {
    flex-direction: column;
}

.prt4>.box1>h1,
.prt4>.box1>p {
    font-size: 35px;
}

.prt4>.box1>p {
    font-size: 20px;
}

.prt4>.box2 {
    width: calc(100% - 40px);
    padding: 0 20px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 50px;
}

.prt4>.box2>div {
    width: 400px;
    flex-direction: column;
}

.prt4>.box2>div>img {
    width: 100%;
    border-radius: 30px;
}

.prt4>.box2>div>p {
    font-size: 20px;
    text-align: center;
}

.prt5,
.prt6 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.prt5 {
    background-image: url("./img/teapot.jpg");
    min-height: auto;
    height: 550px;
    background-position: center;
   
}
.prt6{
    color: rgb(119, 60, 28);
    width:100%;
    flex-direction: column;
    padding: 70px  0 0 0;

}
.prt6>p{
    width:70%;
    font-size: 20px;
    text-align: center;
}
footer{
    gap:50px;
    width:calc(100% - 80px);
    padding:50px 40px;
    flex-direction: row;
    flex-wrap: wrap-reverse;
}
footer>img{
    object-position: center;
    object-fit: cover;
    width:300px;
}
footer>div{
    flex: 1 1 700px;
    flex-direction: column;
    align-items: flex-start;
}

footer>div>.bold{
    font-size: 25px;
}
footer>div>.wb{
    padding:0px 10px;
    color:white;
    gap:5px;
    background-color: rgb(126, 126, 126);
    width:auto;
}
