@media screen and (min-width: 600px) {

}

html,body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Align items to the top */
    height: auto;
    font-family: 'inter' , sans-serif;
    font-size: 12px;
}

p {
    margin: 0;
    padding: 0;
    font-size: 12px;
}

h1, h2, h3 {
    margin: 0;
}

.container {
    width: 99vw;
    margin-left: 1rem;
    margin-right: 1rem;
    /* Add more styling for the container if needed */
} 

@media screen and (min-width: 600px) {
    
    .container {
        width: 800px;
        /* Add more styling for the container if needed */
    } 
}

.topbar {
    background-color: black;
    color :white;
    font-size: 2rem;
    padding-left: 2rem;

}

.header {
    height: ;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;

}

.header img {
    height: 9rem;
}

.menu-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #fafafa;
    padding: 10px 0;
  }

  /* Style for each menu item */
  .menu-item {
    text-decoration: none;
    color: #333;
    padding: 5px 10px;
    transition: border-bottom 0.3s ease;
  }

  /* Style for underline on hover */
  .menu-item:hover {
    border-bottom: 2px solid #333;
  }



.about-banner {
    height: 8rem;
    background-image: url(images/stripbanner.png);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
}


.about-text {
width: ;
margin: 0 auto;
margin-top: 1rem;
padding-left: 2rem;
padding-right: 2rem;
line-height: 1.5rem;
}

.about-text img {
    height: 14rem;
    width: 10rem;
    float:right;
    margin-right: rem;
    margin-left: 1rem;
    margin-bottom: 1rem;


}

.about-text p {
    text-align: justify;
}


.midfoto {
    height: 12rem;
    margin-top: 3rem;
    background-image: url(images/shanghai.png);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
}


  .passion {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 3rem;
    margin-top: 2rem;
    box-shadow: inset 0 0 20px 20px rgba(0, 0, 0, 0.1);
}



.passion-left {
    display: flex;
    flex-direction: column;
    align-items: right;
    width: 74%;
}


.passion-left h2 {
font-family: 'Tangerine', cursive;
font-size: 2rem;
margin-bottom: 1rem;
margin-right: 2rem;
text-align: right;
margin-top: 2rem;
}


.passion-left h4 {
    text-align: right;
    margin-right: 2rem;
}



.passion-right {
    height: 5rem;
    width: 4rem;
}

.passion-right img {
    height: 6rem;
    width: 5rem;
    object-fit: cover;
    border-radius: 1.5rem;
}

.footer {
    background-color: black;
    color : white ;
    display: flex;
    flex-direction: column;
    align-items: center;
justify-content: center;
    height: 4rem;
    text-align: center;
}





















