html, body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}
h1 {
  color: #f6f9f8;
  text-align: left;
  margin: 0;
  padding: 0;
}
/* buttons design*/
button, .bow {
  color: #f6f9f8;
  text-align: right;
  margin: 0;
  padding: 0;
  background-color: #b6ab8d;
  border-color: #e6e0c6;
  border-radius: 5px;
  }
/*header of site*/
.bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}
h2, h3, p {
  color: #f6f9f8;
  text-align: center;
}
/*notice setup*/
.notice {
  display: flex;
  flex-direction: column;
  align-items: center;   
  justify-content: center; 
  text-align: center;     
  padding: 30px;
}
.notice a{
  text-decoration: none;
  color: #f6f9f8;
}
.notice p {
  color: black;
  text-align: center;
  align-items: center;
  padding: 10px;
  margin: 10px;
}
header {
  background-color: #469777;
  top: 0;
  padding: 10px;
  margin-left: 5vw;
  margin-right: 5vw;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
body {
  background-color: #A3D1C6;
  margin: 0;
  padding: 0;
}
/* post background color*/
.bubble {
    border-radius: 5px;
    background-color:#f9f1e5;
    margin-left: 5vw;
    margin-right: 5vw;
}
/*border for post*/
.border {
  background-color: #e6e0c6;
  border-radius: 5px;
  margin-left: 5vw;
  margin-right: 5vw;
}
/*top and bottom header color*/
.top-header, .bottom-header {
    background-color: #6CB7A2;
}
/*rounded corners of bottom and top header*/
.top-header {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.bottom-header {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}
/*bottom header option for profile and vilagers*/
.ribbon {
  background-color: #6CB7A2;
  width: 1376px;         
  height: 10px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
/*footer*/
footer {
  margin-left: 5vw;
  margin-right: 5vw;
  bottom: 0;
  padding: 5px;
  background-color: #469777;
  text-align: center;
  border-top-left-radius: 5px;  /*slims down on left*/
  border-top-right-radius: 5px; /*slims down on right*/
}
footer p {
    color: #f6f9f8;
    margin: 10px;
}