.body {
  margin: 0px;
  width: 100%;
  height: 100%;
  gap: 0px;
  background-color:#fff;
  font-family: 'Roboto', sans-serif;
}

.main {
  /*
  background-color: #92ff60;
  color: #000;
  */
  background-color: #ebfbff;
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding-bottom: 50px;
}

.main-articles {
  display: flex;
  flex-direction: row;
  margin: 0px;
  padding: 0px 15px;
  padding-top: 25px;
  gap: 15px;
  /*
  background-color: #92ff60;
  color: #000;
  */
  background-color: #ebfbff;
  color: #000;
  justify-content: center;
  align-items: center;
}

.main-article-1 {
  /* background-color: rgb(255, 242, 0);
  color: #000; */
  background-color: rgb(136, 147, 148);
  color: #fff;
  padding: 8px 15px 15px 15px;
}

.main-article-2 {
  /* 
  background-color: rgb(0, 60, 255);
  color: #fff;
  */
  background-color: rgb(136, 147, 148);
  color: #fff;
  padding: 8px 15px 15px 15px;
}

.main-header {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;

  position: sticky;
  top: 0;
  z-index: 10;
} 

.main-h2-1 {
  padding: 15px;
  margin: 0px;
  font-size: 2.5rem;
  font-weight: bolder;
}

.article-title {
  margin: 0px;
}

.main-searchfield {
  display: flex;
  flex-direction: row;
  margin: 0px;
  padding: 45px 15px 45px 15px;
  gap: 0px;
  justify-content: center;
  align-items: center;
}

.inner-searchfield {
  display: flex;
  flex-direction: column;
  margin: 0px;
  padding: 0px;
  gap: 5px;
  justify-content: center;
  align-items: center;
}

.search-p {
  margin-top: 0px;
  margin-bottom: 0px;
  margin-right: 0px;
  margin-left: 0px;

  justify-content: center;
  align-items: center;
}

.input-searchfield {
  width: 200px;
  height: 30px;
}

.main-directory {
  /*
  background-color: rgb(0, 255, 255);
  */
  background-color: rgb(136, 147, 148);
  color: #000;
  width: 95%;
  margin: 0px 15px 15px 15px;
}

.directory-ul-header {
  /*
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  
  position: fixed;
  */
  position: sticky;
  top: 0;
  background-color: rgb(136, 147, 148);
  z-index: 10;
}

.inner-directory {
  overflow-y: scroll;
  height: 400px;

  justify-content: center;
  align-items: center;
}

.directory-ul {
  padding-left: 0px;
  margin-top: 0px;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.directory-ul-inner-header {
  width: 100%;
}

.inner-directory-title-ul {
  color: #fff;
  padding: 1px 25px;
  background-color: rgb(58, 58, 58);
  list-style-type: none;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

/*
.inner-directory-title-ul-2 {
  color: #fff;
  padding: 1px 25px;
  background-color: rgb(28, 228, 201);
  list-style-type: none;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
*/

.inner-directory-ul {
  color: #fff;
  padding-right: 25px;
  padding-left: 25px;
  padding-top: 1px;
  padding-bottom: 1px;
  background-color: rgb(184, 184, 184);
  /*
  padding-left: 0px;
  */
  list-style-type: none;
  /*
  gap: 15px;
  */
  /*
  gap: 10%;
  */
  display: flex;
  flex-direction: row;

  justify-content: space-between;
  align-items: center;
}

.inner-directory-ul-2 {
  color: #fff;
  padding-right: 25px;
  padding-left: 25px;
  padding-top: 1px;
  padding-bottom: 1px;
  background-color: rgb(116, 116, 116);
  /*
  padding-left: 0px;
  */
  list-style-type: none;
  /*
  gap: 15px;
  */
  /*
  gap: 10%;
  */
  display: flex;
  flex-direction: row;

  justify-content: space-between;
  align-items: center;
}

.footer {
  background-color: rgb(104, 104, 104);
  color: #fff;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 100px 0px 15px 0px;
}

html, body, header, nav, main, footer, h1, h2, h3, p, ul {
  margin: 0;
  padding: 0;
}

.a-link {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: all .5s ease-in;
}
.a-link:hover {
  color: #000;
}