@font-face {
  font-family: Rajdhani;
  src: url(../content/font/Rajdhani-Medium.ttf);
}
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Rajdhani;
  color: black;
  /* background-color: white; */
}

.bg {
  background-image: url(../content/img/background.jpg);
  background-color: rgb(254, 254, 254);
  color: rgb(0, 0, 0);
}

nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  gap: 0.5rem;
  border-bottom: solid 1px #aaa;
  background-color: #eee;
}

nav a {
  display: inline-block;
  min-width: 9rem;
  padding: 0.5rem;
  border-radius: 0.2rem;
  border: solid 1px #aaa;
  text-align: center;
  text-decoration: none;
  color: #555;
}

nav a[aria-current='page'] {
  color: #000;
  background-color: #d4d4d4;
}

main {
  padding: 1rem;
}

h1 {
  font-weight: bold;
  font-size: 1.5rem;
}

.text-center {
  text-align: center;
}

.text-muted {
  color: darkgray;
}
.text-bold { 
  font-weight: 700;
}

.justify-text {
  text-align: justify;
}

.font-bold {
  font-weight: bold;
}

.main {
  display: flex;
  justify-content: space-around;
  align-content: center;
  align-self: center;
}

.box {
  width: 1000px;
  display: block;
  margin: auto;
}

.unlink {
  text-decoration: none;
  color: black;
}

@media screen and (max-width: 720px) {
  .box {
    width: 100%;
    display: block;
    margin: auto;
  }

  .main {
    display: block;
  }
}
@media screen and (max-width: 445px) {
  .d-flex{
    flex-flow: column;
    justify-content: start;
    align-items: center;
  }
  .ml-10 {
    margin-left: 0px !important;
  }
}

.mb-0 {
  margin-bottom: 0px !important;
}
.mt-0 {
  margin-top: 0px !important;
}

.company{
  font-style: italic;
  color: #555;
}
.d-flex {
  display: flex;
}
.justify-between{
  justify-content: space-between;
  /* align-items: center; */
}

.w-10{
  width: 100px;
}
.d-flex {
  display: flex;
}
.justify-content-center {
  justify-items: center;
  justify-content:center;
}
.ml-10 {
  margin-left: 10px;
}
.h1{
  font-size: 20px;
}
.text-red{
  color: red;
}
.text-green{
  color: lightgreen;
}
.main-text-dlfex{
  display: flex;
  justify-content: center;
}
/*  ---------------------------------- */
[id^="togList"],                        /* HIDE CHECKBOX */
[id^="togList"] ~ .list,                /* HIDE LIST */
[id^="togList"] + label  span + span,   /* HIDE "Collapse" */
[id^="togList"]:checked + label span{   /* HIDE "Expand" (IF CHECKED) */
  display:none;
}
[id^="togList"]:checked + label span + span{
   display:inline-block;                 /*SHOW "Collapse" (IF CHECKED) */
}
[id^="togList"]:checked ~ .list{
  display:block;                        /* SHOW LIST (IF CHECKED) */
}