
body {
    background-color: #FAF4ED;
    border: 5px solid #D88C98;
    font-family: "Roboto", Helvetica, Arial, sans-serif;
}

header {
    background-color: #F9F3EC;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
}

header a {
    display: flex;
    align-items: center;
}

header img {
    width: 300px;
    height: 150px;
    object-fit: contain;
}

nav ul {
    background-color: #D88C98;
    color: white;
    display: flex;
    list-style-type: none;
    justify-content: space-around;
    align-items: center;
    height: 40px;
    margin: 0;
    padding: 0;
}

nav li {
    width: 180px;
    text-align: center;
}

nav a {
    color: black;
    text-decoration: none;
}

#content {
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

h1 {
    text-align: center;
    font-size: 30px;
    color: #333333;
    margin: 20px;
}

h2 {
    font-size: 24px;
    margin: 20px 0 10px 0;
    color: #333333;
}

.moto {
    text-align: center;
    font-size: 18px;
    color: #333333;
    margin-bottom: 20px;
}

/*home page*/
.main-img {
    display: block;
    margin: 0 auto;
    width: 600px;
    height: 250px;
    margin-bottom: 15px;
    border: 3px solid #D88C98;
}

main p {
    margin-bottom: 20px;
    font-size: 16px;
    color: black;
}

.introduction {
    padding: 15px;
    margin-bottom: 20px;
    background-color: white;
    border: 3px solid #D88C98;
}

/*product page*/
.pphoto {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px;
    background-color: white;
    border: 3px solid #D88C98;
}

.pphoto img {
    width: 300px;
    height: 250px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}

.pphoto p {
    font-size: 16px;
    color: black;
    line-height: 1.7;
}

/*about page*/
.about {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background-color: white;
    border: 3px solid #D88C98;
    padding: 20px;
    margin-bottom: 30px;
}

.about img {
    width: 300px;
    height: 400px;
    object-fit: cover;
    object-position: top;
    display: block;
    flex-shrink: 0;
}

.about-text h2 {
    font-size: 22px;
    color: #D88C98;
    margin-bottom: 10px;
}

.about-text p {
    font-size: 16px;
    color: black;
    line-height: 1.7;
    margin-bottom: 10px;
}

/*contact page*/
.contactbox {
    background-color: white;
    border: 3px solid #D88C98;
    padding: 20px;
    margin-bottom: 20px;
    font-size: 18px;
    color: black;
    line-height: 2;
}

footer {
    background-color: #D88C98;
    color: black;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {  
    
header img {
    width: 200px;
    height: 80px;
}

nav ul {
    flex-direction: column;
    height: auto;
    padding: 10px 0;
}

nav li {
    width: 100%;
    padding: 8px 0;
    text-align: center;
}

#content {
    padding: 10px;
}

.pphoto {
    flex-direction: column;
}

.pphoto img {
    width: 100%;
    height: auto;
}

.about {
    flex-direction: column;
}

.about img {
    width: 100%;
    height: auto;
}

.main-img {
    width: 100%;
    height: auto;
}
}