* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}


body {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/Pictures/siomaipic.jpg') no-repeat;
    background-size: cover;
    background-position: center;
    backdrop-filter: blur(5px);
 }

/* Navigation bar */

.menu_bar {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #FCE604;
    height: 120px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    z-index: 1;
  }

  button {
    margin-left: 10px;
    padding: 9px 25px;
    background-color: #AE1526;
    font-weight: bold;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    
  
  }

  button:hover {
    background-color: #135E3C;
  }
  
  .logo {
    cursor: pointer;
    margin-right: auto;
    background-color: #FCE604;
  }
  
  
  .menu_bar ul {
    display: flex;
    list-style: none;
  }
  
  .menu_bar ul li {
    padding: 10px 30px;
    position: relative;
    font-weight: bold;
  }
  
  .menu_bar ul li a {
    text-decoration: none;
    font-size: 17px;
    color: #135E3C;
  }
  
  .menu_bar ul li a:hover {
    transition: all 0.3s ease 0s;
    color: #AE1526;
  }
  
  .menu_bar button {
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
  }
  
  .dropdown_menu {
    visibility: hidden; 
    opacity: 0; 
    display: none;
    border-radius: 5px;
    transition: all 0.3s ease, visibility 0.3s ease;
    
  }
  
  .menu_bar ul li:hover .dropdown_menu {
    visibility: visible; 
    opacity: 1; 
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: white;
  }
  
  .dropdown_menu ul {
    display: block;
    list-style: none;
   
  }
  
  .dropdown_menu ul li{
    
    width: 150px;
    padding: 10px;
    text-align: center;
    font-weight: 100;
  }
  
  .dropdown_menu ul li a {
    text-decoration: none;
    font-size: 16px;
    color: #8d8d8d;
  }

    /* About us page */

.wrapper {
    margin-top: 20vh;
    width:55%;
    background-color: white;
    border-radius: 20px;
    padding: 30px 40px;
}

.wrapper-second {
    margin-top: 10vh; 
}





.topic {
    text-align: center;
}

.topic h1 {
    font-size: 50px;
    color: #AE1526;

}

.topic-last h1 {
    font-style: italic;
    font-size: 50px;
    color: black;


}

.topic-last p {
    text-align: justify;
}

.topic h2 {
    font-style: italic;
    margin-top: 30px;
    font-size: 20px;
    color: black;

}

.contents {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
    flex-direction: row;
    padding-right: 10px;
    gap: 20px;
}

.contents .left-side {
    width: 25%;
    height: 100%;
    position: relative;
}

.contents .left-side p  {

    text-align: justify;

}

.contents .right-side {
    width: 70%;
    height: 100%;
    position: relative;
}

.contents .right-side img {
    height: 400px;
    border-radius: 10px
}

.contents .right-side h1,
.wrapper .pic h1 {
    font-size: 15px;
    color: darkgray;
    margin: 20px 0 20px 0 ;

}
.wrapper .contents .button {
    width: 1000px;
}
.wrapper .contents button {
    width: 100%;
    height: 45px;
    background-color: #AE1526;
    border: none;
    color: white;
    outline: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: block; 
    margin: 0 auto;
}


.wrapper .pic {
    display: flex;
    align-items: center;
    position: relative;
    flex-direction:column;
}
.wrapper .pic img {
    margin-top: 20px;
    height: 100%;
    border-radius: 10px;
}