@font-face {
  font-family: 'Glass TTY VT220';
  src:url('../static/fonts/glass_tty_vt220-webfont.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

* {
  font-family: 'Glass TTY VT220', monospace;
}

.left-aligned {
  margin-left: auto;
}

.bg-dark {
  background-color: #D9DFDF !important;
}

/* CALLOUT */
.bd-callout {
  padding: 1.25rem;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  border: 1px solid #e9ecef;
  border-left-width: 0.25rem;
  border-radius: 0.25rem;
}

.bd-callout h4 {
  margin-bottom: 0.25rem;
}

.bd-callout p:last-child {
  margin-bottom: 0;
}

.bd-callout code {
  border-radius: 0.25rem;
}

.bd-callout + .bd-callout {
  margin-top: -0.25rem;
}

.bd-callout-info {
  border-left-color: #5bc0de;
}

.bd-callout-warning {
  border-left-color: #f0ad4e;
}

.bd-callout-danger {
  border-left-color: #d9534f;
}

#loader {
  width: 100%;
  height: 100vh;
}

/* nav */
header {
  height: 50vh;
}


.bg-hero {
  background-attachment: fixed;
}

#menu-nav {
  display: flex;
  width: 100%;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  transition: visibility 0s, 0.6s, opacity 0.6s linear, transform 1s;
}
#menu-nav .nav-link {
  color: rgb(0, 0, 0);
}q
#menu-nav #logo-name {
  color: rgb(0, 0, 0);
}

.navbar-after-scroll {
  height: 10%;
  background-color: rgba(255, 255, 255, 0.5);
}
.navbar-after-scroll a {
  color: black;
  height: 50%;
}

dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown-menu ul li a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  display: block;
}

/* sidebar*/
.sidebar {
  width: 220px;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 100px;
  margin-bottom: 100px;
  z-index: 60;
  margin-left: 20px;
  padding-right: 20px;
  background-image: none;
}

.frosted-glass {
  width: 240px;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 59;
  padding-left: 20px;
  padding-right: 20px;
  background: url("https://static.igem.wiki/teams/5308/materials/template-24-igem-wiki-0014-2-terminal-top-transparent.png");
  border-radius: 10px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  font-size:medium;
  background-size:cover;
  background-repeat:no-repeat;
  background-position:center;
}

.sidebar ul {
  list-style-type: none;
  padding: 0;
}

.sidebar ul li {
  height: 40px;
  padding: 10px;
  text-align: right;
  margin-right: -10px;
}

.sidebar ul li a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  display: block;
  font-weight: bold;
}

.sidebar ul li a:hover {
  background-color: #575757;
}
#sidebar {
  font-size: 10px;
  height: 100vh;
  position: sticky;
  top: 15vh;
  align-items: start;
  justify-content: flex-start;
  background-color: #ffffff; 
  z-index: 59;
 
}
#sidebar a {
  color: rgb(164, 164, 164);
  height: 40px;
  width: 100%;
  text-overflow: ellipsis;
  text-wrap: nowrap;
  overflow: hidden;
}
#sidebar a:hover {
  color: white;
}
#sidebar a:active {
  color: white;
  background-color: rgba(219,219,219);
}
#sidebar nav {
  width: calc(100% - 3rem);
}
#sidebar.sidebar-sm a {
  height: 28px;
}
#sidebar.sidebar-sm .nav-link {
  padding: 0.1rem 1rem;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: rgb(219, 219, 219);
  margin-bottom: 10px;
}

.sidebar ul #logo-name{
  font-family:monospace;margin-left: -20px; padding-top: 28px;font-size: x-large;font-weight: bold;
}

/* header */
header {
  background-image: url('your-image-url.jpg'); /* Make sure to specify the image URL */
  background-repeat: no-repeat;
  background-size: cover; /* Adjusts the size of the background image */
  background-position: center top; /* Aligns the background image to the right and vertically centered */
  height: 80vh; /* Set the height of the header (adjust as necessary) */
  width: 100%; /* Ensure the header takes up the full width */
  position: relative; /* Allows for positioning of other elements inside the header */
}



/* content */
.content {
  background-color: #dca287;
}

/* body */
body {
  margin: 0;
  font-family: 'CALIBRI';
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.5;
  color: whitesmoke;
  background-color: #dca287;
  margin-left: 240px;
  z-index: 1;
}



body ul {
  list-style-type: circle;
  margin-bottom: 16px;
}
body li {
  margin: 16px;
}
body figcaption {
  padding: 0 20px;
  font-family: "Montserrat";
  font-size: 8px;
  font-weight: 100;
  color: rgb(255, 255, 255);
  text-align: center;
}
body td {
  padding: 1rem;

}

.col {
  margin-left: 20px;
}


.cardholder {
  width: 100%;
  margin: 0;
  min-height: 80vh;
  display: grid;
  grid-auto-flow: column;
  place-content: center;
  -moz-column-gap: 100px;
       column-gap: 100px;
}
.cardholder figure {
  display: grid;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
}
.cardholder figure > * {
  grid-area: 1/1;
  transition: 0.4s;
}
.cardholder figure figcaption {
  display: grid;
  align-items: end;
  font-family: sans-serif;
  font-size: 2.3rem;
  color: rgba(0, 0, 0, 0);
  padding: 0.75rem;
  background: var(--c, rgba(0, 0, 0, 0.6));
  -webkit-clip-path: inset(0 var(--_i, 100%) 0 0);
          clip-path: inset(0 var(--_i, 100%) 0 0);
  -webkit-mask-composite: nor;
  -webkit-mask-clip: text, padding-box;
  margin: -1px;
  color: white;
  opacity: 1;
}
.cardholder figure figcaption h3 {
  line-height: 1.5;
  -webkit-mask: linear-gradient(#000 0 0), linear-gradient(#000 0 0);
  -webkit-mask-composite: nor;
  -webkit-mask-clip: text, padding-box;
  font-size: 4rem;
  font-weight: bold;
}
.cardholder figure:hover figcaption {
  --_i: 0%;
}
.cardholder figure:hover img {
  transform: scale(1.85);
}
@supports not (-webkit-mask-clip: text) {
  .cardholder figure figcaption {
    -webkit-mask: none;
    color: #fff;
  }
}

section {
  padding-top: 70px;
}

#references h3 {
  color: white;
}
#references p {
  color: rgb(182, 182, 182);
}

.link {
  padding: 0 20px;
  font-family: "Montserrat";
  font-weight: 100;
  color: rgb(255, 255, 255);
  text-align: center;
}

.award {
  padding: 0 20px;
  font-family: "Montserrat";
  font-weight: 100;
  text-align: center;
}



/* footer */
footer {
  color: black !important;
  font-weight: 1;
  text-decoration: none;
}
footer a {
  color: blue;
  font-weight: 1;
  text-decoration: none;
}
footer a :hover {
  color: black;
  text-decoration: underline;
}

/* team image */
.team-img {
  width: 100%;
  height: 70vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 100% 35%;
     object-position: 100% 35%;
}

.team-img2 {
  width: 100%;
  height: 70vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 100% 0%;
     object-position: 100% 0%;
}



.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(37, 37, 37, 0.855);
  justify-content: center;
  align-items: center;
}
.overlay-content {
  background-color: rgba(255, 255, 255, 0);
  padding: 20px;
  border-radius: 5px;
  text-align: center;
}
.overlay-content a{
  color:#00ff00
}

.close {
  margin-top: 10px;
  cursor: pointer;
  color:white;
}

.overlay2 {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(37, 37, 37, 0.855);
  justify-content: center;
  align-items: center;
}
.overlay-content2 {
  background-color: rgba(255, 255, 255, 0);
  padding: 20px;
  border-radius: 5px;
  text-align: center;
}
.overlay-content2 a{
  color:#00ff00
}

.close2 {
  margin-top: 10px;
  cursor: pointer;
  color:white;
}


/* Terminal CSS */
#terminal-container {
  height: 360px;
  width: 240px;
  border: 1px solid rgb(55, 255, 55);
  padding: 10px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  position: fixed; 
  top: 100px; 
  right: 0px;
  background-color: #000;
  z-index: 1000; /* 保证在其他元素上层 */
  display: flex; 
}

#terminal {
  flex-grow: 1;
  overflow-y: auto;
  color: #00ff00;
  padding-bottom: 40px;
  font-size: medium;
}

#input {
  width: calc(100% - 20px);
  border: none;
  background: black;
  color: #00ff00;
  outline: none;
  font-family: monospace;
  font-size: medium;
}

/* Style for the trigger button */



.col-10 li{
  font-family: sans-serif;
}
.col-10 h2{
font-weight: bold;
}

.col-10 p{
  font-family: sans-serif
}

.col-10 i{
  font-family: sans-serif;
}

.col-10 a-href{
  font-family: sans-serif;
}

.col-10 a {
  font-family: sans-serif;
}

.col-10 b{
  font-family: sans-serif;
}

.col-10 h2{
  font-family: sans-serif;
}

.col-10 h3{
  font-family: sans-serif;
}

.col-11 li{
  font-family: sans-serif;
}
.col-11 h2{
font-weight: bold;
}

.col-11 p{
  font-family: sans-serif
}


.col-10 div iframe {
  border: none;
  height: 50vh;
  width: 50vw;
  display: block;
  left:30%
}

.col-lg-12 h1{
  font-family: getronde;
  padding-bottom: 10px;
  position: absolute;
  bottom: 0; 
  left: 30vw;
  transform: translateX(-50%);
  font-size: 80px;
  color:rgb(108, 255, 172);
  text-shadow: 
    -2px -2px 0 #000,  
    2px -2px 0 #000,   
    -2px 2px 0 #000,   
    2px 2px 0 #000;    
}

@font-face {
  font-family: "getronde";
  src: url("https://static.igem.wiki/teams/4844/wiki/fonts/getronde-51qev-webfont.woff2") format("woff2"),
       url("https://static.igem.wiki/teams/4844/wiki/fonts/getronde-51qev-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}