			#line {
				background-color: #B80808;
				height: 5px;
				width: 100%;
				margin-bottom: 2px;
			}
			#scrollbox {
				border-top: solid 2px #B80808;
				border-bottom: solid 2px #B80808;
				padding-top: 7px;
				padding-bottom: 5px;
				margin-bottom: 11px;
			}
			#scrollnews {
        animation: blinker 2s linear infinite;
				white-space: nowrap;
				display: flex;
				overflow: hidden;
                font-family: sans-serif;
            }
			#scrollnews p {
				animation: scroll var(--t) linear infinite;
				padding-left: 40px;
				color: #B80808;
				font-size: 14.5px;
			}
			@keyframes scroll {
			0% 
				{
				transform: translateX(0%);
				}
			100%
				{
					transform: translateX(-100%);
				}	
			}
            @keyframes blinker {
                50% {
                    opacity: 10%;
                }
            }
			#fullheader {
				display: flex;
				justify-content: center;
				align-items: center;
				margin-bottom: -45px;
				background-image: url("https://redalerticu.neocities.org/assets/img/Background.jpg");
				background-size: 45%;
			}
			#logoheader {
				display: flex;
				flex-direction: column;
			}
			.info {
				font-size: 10px;
				text-align: justify;
				align-content: center;
				width: 200px;
				height: 65px;
				padding: 7px;
				padding-left: 10px;
				background-color: black;
			}
			#logo {
				height: 150px;
				width: 650px;
				margin-top: 14px;
				margin-left: 14px;
				margin-right: 14px;
			}
			#redickhor {
				font-size: 9px;
				margin-bottom: -15px;
				margin-left: 15px;
			}
			#icubrand {
				margin-left: 65%;
				margin-top: -7px;
				font-size: 9px;
			}
			#navheader {
				display: flex;
				justify-content: center;
				align-items: center;
			}
			.hexgonaled {
				clip-path: polygon(-50% 50%,50% 100%,150% 50%,50% 0);
				background-color: #B80808;
				height: 160px;
				width: 145px;
			}
			#hexleft {
				background: linear-gradient(to left, #B80808, #4B0202);
				box-shadow: 5px 5px 2px black;
			}
			#hexright {
				background: linear-gradient(to right, #B80808, #4B0202);
				box-shadow: -5px -5px 2px black;
			}
			#nav {
				width: 75%;
				height: 50px;
				background: linear-gradient(to bottom, #fff, #B80808, #B80808, #B80808, #B80808, #4B0202);
				display: flex;
				align-items: center;
				justify-content: center;
			}
			.navbutton {
				background: linear-gradient(to bottom, #B80808, #4B0202);
				height: 25px;
				width: 85px;
				font-size: 9px;
				border-top: solid 2px gray;
				border-left: solid 2px gray;
			}
      button:hover {
        background: linear-gradient(to bottom, #000, #4B0202);
        color: red;
      }
      button:disable {
        background: darkgray;
      }