.bdy {
	background-color: #000000;
	font-family: Arial, Helvetica, sans-serif;
	
	background-image: url('../img/b/cline4.svg');
    background-repeat: no-repeat;
    background-position: center; 
    position: relative;
	background-size: cover;
}
.hdr {
	display: grid;
	grid-template-columns: 75px 250px auto;
	grid-template-rows: 4em;
	--border-bottom: 0.5px dashed #16efff;	
}
.sticky{	
  position:sticky;
  top:10px;
  color:#16efff;
  padding:10px;
  font-size:1.1em;
  background-color:#000000;
}

#hdr ul {
	list-style-type: none;
	margin: 10px;
	padding: 5px;
	overflow: hidden;
	background-color: #000000;	
}

#hdr ul li {
  float: right;
  border-left: 0.5px solid #16efff;
  line-height: 2px;
}

#hdr ul li a {
  display: block;
  color: #16efff;
  text-align: center;
  padding: 16px;
  text-decoration: none;
}

#hdr ul li a:hover {
  background-color: #333333;
}	

.grid {
	display: grid;
	background: rgba(0, 0, 0, 0.3);
	place-content: center;
	grid-template-columns: 3fr 1fr 4fr;
	grid-template-rows: 3em 3em 3em 3em;
	gap: 15px;	
	justify-content: space-around;
}

.grid-hdr {
	grid-column: 1 / span 2;
	grid-row: 1;
	font-size: 3em;
	font-weight: 500;
	text-align: center;
}

.grid-txt {
	grid-column: 1 / span 2;
	--grid-row: 3;
	font-size: 2em;
	font-weight: 500;
	text-align: center;
	vertical-align: middle;
}	

.main {
	--background-color: #000000;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 3em 3em 150px;
	gap: 15px;	
	justify-content: space-around;
	
	
}

.announcements {
	background: rgba(0, 0, 0, 0.3);
	color: #dddddd;
	grid-column: 1;
	grid-row: 1;
	font-size: 1.25em;
	font-weight: bold;
	text-align: justify;
	
}

.dropping-texts {
  display: inline-block;
  width: 360px;
  text-align: left;
  height: 36px;
  vertical-align: -2px;
}

.dropping-texts > div {
  font-size:0px;
  color: #dddddd;  
  opacity:0;
  margin-left:5em;
  position:absolute;
  font-weight:300;   
  box-shadow: 0px 60px 25px -20px rgba(0,0,0,0.5);
}

.dropping-texts > div:nth-child(1) {
  animation: roll 40s linear infinite 0s, delay-animation 40s linear infinite;
  opacity:0;
  
}
.dropping-texts > div:nth-child(2) {
  animation: roll 40s linear infinite 10s, delay-animation 40s linear infinite 10s;
  opacity:0;
}
.dropping-texts > div:nth-child(3) {
  animation: roll 40s linear infinite 20s, delay-animation 40s linear infinite 20s;
  opacity:0;
}
.dropping-texts > div:nth-child(4) {
  animation: roll 40s linear infinite 30s, delay-animation 40s linear infinite 30s;
  opacity:0;
}

@keyframes delay-animation {
	0% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes roll {
	0% {
    font-size:1.1em;
    opacity:1;
	--background: rgba(0, 0, 0, 0.5);
  }
  25% {
    font-size:1.1em;
	opacity:1;
	--background: rgba(0, 0, 0, 0.5);
  }
  50% {
    font-size:1.1em;
	opacity:1;
	--background: rgba(0, 0, 0, 0.5);
  }
  75% {
    font-size:1.1em;
	opacity:1;
	--background: rgba(0, 0, 0, 0.5);
  }
  95% {
    font-size:1.1em;
	opacity:1;
	--background: rgba(0, 0, 0, 0.5);
  }
  100% {
    font-size:1.1em;
    opacity:0;
	display: none;
  }
}

.highlight {
	font-size:1.25em;
	font-weight: bold;
	--font-style: italic;
}
.shade{position:relative;-webkit-text-fill-color:transparent;-webkit-background-clip:text;background-clip:text;background-image:linear-gradient(90deg,#3366ff,#16efff );-webkit-box-decoration-break:clone;box-decoration-break:clone}