@import "../scripts-styles/blink-ani.css";

::selection {
	color: black;
	background: white;
}

p {
	line-height: 1.3;
}

hr {
	margin: 8px auto 8px auto;
	border: solid white;
	border-width: 1px 0;
}
hr.sub {
	width: 55%;
	margin: 8px auto 8px auto;
	border: dashed white;
	border-width: 1px 0;
}
hr.dashed {
	width: 55%;
	margin: 8px auto 8px auto;
	border: dashed white;
	border-width: 1px 0;
}


section {
	position: relative;
}
 h1 {
	margin: 0;
	font-size: 25px;
}
h2 {
	margin: 0;
	font-size: 20px;
}

a { color:yellow; }
a:hover {
	background: white;
	color: red;
}

section>div {
	position: relative;
}

.list-cont {
	display: grid;
	grid-template-columns: 1fr 60% 1fr;
	justify-items: center;
	align-items: center;
	margin: 1rem auto;
}

.list-cont ul {
	margin: auto;
	padding: 15px;
	padding-left: 30px;

	border: 2px red solid;
}
.list-cont ul>li {
	margin-bottom: 0.5em;
}
.list-cont ul>li:last-of-type {
	margin: 0;
}
.list-cont ul p {
	margin-left: -15px;
}

.r {
	color: red;
	font-weight: bold;
}
.glow {
	text-shadow: 0 0 10px #ff2828;
}
.ff-mono {
	font-family: consolas, monospace;
}
.bold {
	text-align: center;
	font-size: 20px;
	font-weight: bold;
}
.sub {
	text-align: center;
	font-weight: bold;
	text-transform: uppercase;
	text-decoration: underline;
	font-size: 14px;
}

.center {
	text-align: center;
}
.left {
	text-align-last: left;
}

details {
	margin: 1rem auto;
}

div>hr {
	margin: 5px 8px;
}



span.rainbow {
  animation: rainbow .5s linear 0s infinite;
}
@keyframes rainbow {
  from {
    color: #6666ff;
  }
  10% {
    color: #0099ff;
  }
  50% {
    color: #00ff00;
  }
  75% {
    color: #ff3399;
  }
  100% {
    color: #6666ff;
  }
}

@keyframes rainbow-glow {
  from {
    text-shadow: 0 0 20px rgba(102, 102, 255, 0.5);
  }
  10% {
    text-shadow: 0 0 20px rgba(0, 153, 255, 0.5);
  }
  50% {
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
  }
  75% {
    text-shadow: 0 0 20px rgba(255, 51, 153, 0.5);
  }
  100% {
    text-shadow: 0 0 20px rgba(102, 102, 255, 0.5);
  }
}