* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#wraper {
  max-width: 1000px;
  margin: auto;
  font-family: Arial, Helvetica, sans-serif;
}

#paner img {
  width: 100%;
  height: 250px;
}

#menu {
  background-color: #BF1A1A;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#menu .active {
  background-color: rgb(16, 28, 110);
}

#menu .active a {
  color: aliceblue;
}

#menu ul {
  padding: 0;
  list-style: none;
  display: flex;
}

#menu ul li {
  padding: 10px;
  font-weight: bold;
  border-right: 1px solid whitesmoke;

}

#menu ul li:last-child {
  border: 0px;
}

#menu ul li:hover {
  background-color: rgb(28, 16, 2);
  cursor: pointer;
}

#menu ul li a {
  text-decoration: none;
  color: rgb(255, 255, 255);

}

#menu input[type=text] {
  height: 25px;
  border-radius: 3px;
  padding: 0 5px;
  background-color: aquamarine;
}

#menu button {
  height: 25px;
  padding: 0px 5px;
  background-color: bisque;
}

.chitiet img {
  float: left;
  max-width: 400px;
  border-radius: 20px;
  margin: 20px;

}

.chitiet h3 {
  margin: 20px 0px;
  text-transform: uppercase;
}

.chitiet p {
  text-align: justify;
  margin-bottom: 20px;
}

.chitiet ul {
  padding: 0 30px;
  margin: 10px 10px;
}


#content h2 {
  background-color: #FF6C0C;
  color: rgb(255, 255, 255);
  padding: 10px 5px 5px 10px;
}


#footer {
  clear: both;
  ;
  display: flex;
  background-color: beige;
  padding: 10px 5px;
}

#footer #left {
  width: 50%;
}

#footer #center {
  width: 25%;
}

#footer #right {
  width: 25%;
}

#footer h4 {
  margin: 10px 0px;
}

#end {
  background-color: rgb(47, 47, 3);
  color: whitesmoke;
  padding: 10px;
  text-align: center;
}