*{
    margin: 0;
    padding: 0;
    font-family: 'Times New Roman', Times, serif;
}

.webpage-header {
    font-family: 'Times New Roman', Times, serif;
}

.container{
    background: #ecc4d5;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px; 
    box-sizing: border-box;
    box-shadow:0px 5px 5px rgb(73, 75, 75);
    z-index: 100;
}

.webpage-top-bar{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.webpage-icon {
    display: flex;
    vertical-align: bottom;
}

.webpage-icon img {
    color: rgb(255, 255, 255);
    width: 80px;
    gap: 4px;
    vertical-align: middle;
}

.webpage-icon i {
    font-size: 50px;
    margin-top: -10px;
    text-align:center;
    text-shadow: 0 3px 3px #fff;
}

.webpage-menus{
    position: fixed;
    top: 10px;
    right: 25px;
    margin-top: px;
    margin-right: 1px;
    width: 50%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end; 
    flex-direction: column;
    flex-wrap: wrap;
}

.webpage-menus menu{
    padding: 20px;
    overflow: hidden;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
}

.webpage-menus menu li{
    display: inline-block;
    padding: 8px 15px;
    background: #f7e5f5;
    color: rgb(228, 23, 23);
    margin-left: 20px;
    margin-top: 5px;
    border-radius: 20px;
    list-style: none;
    font-size: 15px;
    font-family: arial;
}

.webpage-menus menu li:hover{
    background: #b80e8d;
    color: #fff;
}
body {
    background-image: url(bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.webpage-main {
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center; 
    height: 100vh; 
    font-size: larger;
    font-family:'Times New Roman', Times, serif;
}

.webpage-main-content {
    display: flex;
    flex-direction: column;
    align-items:center;  
    text-align:center; 
    padding-left: 100px;
}

.webpage-main-content h1 {
    font-size: larger;
    font-family:'Times New Roman', Times, serif;
}

input[type="button"] {
    display: block; 
    margin: 20px auto; 
    border-radius: 20px;
    padding: 8px 15px;
}

::-webkit-scrollbar {
    width: 10px;
}
  
::-webkit-scrollbar-track {
    background: #f1f1f100;
}
  
::-webkit-scrollbar-thumb {
    background: rgb(71, 71, 71);
}
  
::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.social{
    width: 400px;

}
.chat-container {
    max-width: 800px;
    margin: 300px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.chat-box {
    max-height: 400px;
    overflow-y: auto;
    padding: 10px;
}

.chat-message {
    margin-bottom: 15px;
}

.message-sender {
    font-weight: bold;
    margin-bottom: 5px;
}

.message-text {
    background-color: #f0f0f0;
    padding: 10px;
    border-radius: 10px;
}

.user-input {
    margin-top: 20px;
    display: flex;
    align-items: center;
}

#message-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-right: 10px;
}

#send-btn {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

#send-btn:hover {
    background-color: #0056b3;
}

.blog-section {
    background-color: #f9f9f9;
    padding: 50px 0;
    height: auto;
    margin-top: 400px;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
}

.blog-posts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.blog-post {
    width: 300px;
    margin: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.blog-post h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.blog-post p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-post a {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.blog-post a:hover {
    background-color: #0056b3;
}
.cart-main{
    display: flex;
    margin-top: 150px;
    justify-content: center;
}