* {
  margin: 0px;
  padding: 0px;
}

@font-face {
  font-family: NotoSansKannada;
  src: url("fonts/NotoSansKannada-Regular.ttf");
}

@font-face {
  font-family: NotoSansKannada-Light;
  src: url("fonts/NotoSansKannada-Light.ttf");
}

@font-face {
  font-family: NotoSansKannada-SemiBold;
  src: url("fonts/NotoSansKannada-SemiBold.ttf");
}

@font-face {
  font-family: NotoSansMono;
  src: url("fonts/NotoSansMono-Regular.ttf");
}

body {
  min-height: 100vh;
  min-width: 100vw;
  font-family: "NotoSansKannada-Light";
}

a {
  text-decoration: none;
}

hr {
  margin-left: 25px;
  margin-right: 25px;
}

div.navbar {
  border-bottom: 1px;
  border-top: 0px;
  border-left: 0px;
  border-right: 0px;
  border-color: grey;
  border-style: solid;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: white;
  /* background-image: linear-gradient(, white); */

  position: sticky;
  top: 0px;
}

div.title {
  font-size: 40px;
  margin-left: 15px;
  margin-top: 15px;
  margin-bottom: 5px;
}

div.search-bar-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 5px;

  margin-bottom: 10px;

  border-radius: 10px;
  border: 1px;
  border-style: solid;
  border-color: grey;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
}

div.xbutton {
  border: grey;
  display: none;
  font-family: "NotoSansMono";
  display: block;
}

div.xbutton:hover {
  cursor: pointer;
  color: black;
}

div.search-bar-button input {
  color: black;
  /* background-color: #91C788; */
  border: none;
  outline: 0px;
  font-size: 16px;
}

div.search-bar-button input:focus {
  color: black;
  /* background-color: #91C788; */
  border: none;
}

div.search_thumbnail {
  /* background-color: black; */
  width: 130px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

img.thumbnail_img {
  border-radius: 3px;
  display: block;
}

div.search_result {
  display: flex;
}

div.search_elem {
  margin: 10px;
  padding: 10px;
  font-size: 14px;
}

div.search_prathi {
  padding-bottom: 5px;
  font-size: 20px;
  font-weight: semibold;
  overflow: hidden;
  text-overflow: ellipsis;
}

div.search_prathi_id {
  font-style: italic;
  font-size: 12px;
}

@media only screen and (min-width: 500px) {
  /* option 1 */
  div.navbar {
    flex-direction: row;
    justify-content: left;
  }

  /* option 2 */
  div.navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  div.search-bar-button {
    margin-left: 25px;
  }
}
