*{
  box-sizing: border-box;
  
}

.libertinus-sans-regular {
  font-family: "Libertinus Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.libertinus-sans-bold {
  font-family: "Libertinus Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.libertinus-sans-regular-italic {
  font-family: "Libertinus Sans", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.tube{
  border: 5px solid double white;
  padding-left: 1000px;
  padding-top: 200px;
  position: fixed;
  border-radius: 10px;
}


.lala {
	    width: auto;
			height:auto;
	    border: 1px solid black;
	    white-space: normal;
			padding:0.3em;
	    display: inline-block;
	    vertical-align: middle;
}

p{
  font-family: "Libertinus Sans", sans-serif;
  color:white;
  font-size:10px;
}

.badges{
  height: 140px; 
  overflow-x: hidden; 
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: white black;
  scroll-behavior: smooth;
}

.header{
  color: white;
  z-index: 1000;
}

li{
  font-family: "Libertinus Sans", sans-serif;
  font-weight: 700;
}

a, a:link, a:visited{
  text-decoration: none;
  color: white;
}


a:hover{
  color: white;
  background: linear-gradient(to bottom, transparent 85%, white 100%);
  background-position: 0 100%;
  background-size: 0% 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s ease-in-out;
}

body {
  font-family: "Libertinus Sans" sans-serif;
  background-image: url('ascii-art.png') ;
  background-size: 28%;
  background-repeat: repeat;
  font-family: 'MS PGothic bold', sans-serif;
  text-align: center;

}

h1{
  color:white;
  
}

.grid-img{
  top:65px;
  bottom:0px;
  min-height: 100vh;
  min-width: 100vw;
  display:block;
  position:fixed
 
}

.wrap {
  display: flex;
  min-width: 1460px;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  margin-top:5rem;
  gap:(1.5rem, -10.75rem + 28vw, 5rem);
  overflow-x:hidden;
  
}


.main-box {
    width: 20vw;
    height: 30vh;
    background-color: rgb(0 0 0 / 96%);
    box-sizing: content-box;
    border: #bbbbbb 1px dotted;
    box-shadow: inset gainsboro 0 0 0px, rgb(255 255 255) 0 0 2px 3px;
    border-radius: 1rem;
    align-content: center;
    margin-left: 280px;
    margin-top:75px;
    z-index:10000;
}

.sidebar {
  width: auto;
  padding:5px;
  height: auto;
  background-color: rgb(0 0 0 / 96%);
  border: #bbbbbb 1px dotted;
  box-shadow: inset gainsboro 0 0 0px, rgb(255 255 255) 0 0 2px 2px;
  border-radius: 1rem;
  position:relative;
  left: 559px;
  z-index: 10000;
 
}

.navbar{
  position:relative;
  text-decoration: none;
  width:100%;
  height:auto;
  display: flex;
  flex-direction: row;
  gap:0.5em;
  padding-left:0px;
}

.photo-wrap{
  display: flex;
}

#marquee-container {
  border: 2px solid yellow;
  color: white; /* text color */
  font-weight: 900;
  text-shadow: 4px 4px 4px #000000;
  margin: auto;
  width: 25%;
  max-width: 900px;
  height: 30px;
  overflow: hidden;     /* this hides text as it scrolls in/out */
  position: relative;   /* lets it be absolutely positioned */
  font-size: 20px;
  text-align:center;
  white-space: nowrap;  /* keep the text on one line */
}


#marquee-track{
  display: flex;
  position:absolute;
    background: repeating-linear-gradient(45deg, #ffeb3b,
    #fff200 10px,
    #000000 10px,
    #000000 20px
    );
  width: max-content;
  animation: marquee-continuous 3s linear infinite;
}

#marquee-text {
  
  padding: 0 10px;
  flex-shrink: 0;
}

@keyframes marquee-continuous {
  0%{
    transform: translateX(0%);
  }
  
  100%{
    transform: translateX(-50%);
  }
  
}

    
        