@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');

body {
  margin: 0;
  padding: 0;
  background-color: #000;
  font-family: "Open Sans";
  font-weight: 400;
  font-size: 1.5em;
  scroll-behavior: smooth;
}
a {
  color: #000;
  text-decoration: none;
}
a:visited {
  color: #000;
}
.page {
  display: none;
  max-width: 800px;
  min-height: 100vh;
  margin: auto;
  background-image: url("../images/backgrounds/main.jpg");
  background-repeat: repeat-y;
  background-size: cover;
}

.title_bar {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  top:50px;
  width: 100%;
  border-top: 7px solid #fff;
  border-bottom:  7px solid #fff;
  background-color:#28AAE1;
  color: #fff;
}
.title_bar_logo img{
  height: 75px;
  margin: 5px;
}
.title_text{
  width: 100%;
  text-align: center;
  font-family: "Open Sans";
  font-weight: 700;
  font-size: 1.5em;
}
.page_breadcrumbs {
  margin-top: 70px;
  padding: 5px;
  padding-left: 20px;
  background-color: #ffffffbb;
}
.page_breadcrumbs a {
  font-size: 0.8em;
  font-weight: 700;
  color: #fff;
  background-color: #28AAE1;
  padding: 3px;
  border: 2px solid #1a8cbc;
  border-radius: 5px;

}
.page_breadcrumbs a span {
  vertical-align:middle;
  width: 24px;
}
.content {
  display: flex;
  padding: 10px;
  background-color: #ffffffbb;
}
.overview_page_badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.overview_page_badges_item {
  width: 120px;
  font-size: .8em;
  text-align: center;
}
.overview_page_badges_item img{
  height: 100px;
  cursor: pointer;
}
#detail_page_content{
  flex-wrap: wrap;
}
.detail_page_badge {
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    width: 100%;
}
.detail_page_badge img{
    height: 200px;
}
.detail_page_assignment{
  display: flex;
}
.detail_page_assignment div{
  padding: 3px;
}
.detail_page_assignment_image img {
  height: 50px;
}
.detail_page_assignment{
  width: 100%;
  min-height: 110px;
  border-bottom: 2px dashed #28AAE1;
  margin-bottom: 10px;
}
