<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
	box-sizing: border-box;
}

body {
	font-family: "Open Sans", sans-serif;
	font-size: 20px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.heading-small {
    font-size: 1.25rem;
}

.heading-medium {
    font-size: 1.5rem;
}

.heading-big {
    font-size: 1.75rem;
}

.header {
	background-image: linear-gradient(#ff0000, #fff);
	padding: 1rem;
	text-align: center;
}

.head {
	background-image: linear-gradient(to right, #333 , #fff);
	text-align: center;
}

#logo {
	text-decoration: none;
	color: #000000;
	font-size: 50px;
	font-weight: bold;
	transition: 0.4s;
	font-family: "Fugaz One";
}

/* */

.topnav {
	overflow: hidden;
	background-color: #000000;
	border-bottom: #ff0000 3px solid;
}
  
.topnav a {
	float: left;
	display: block;
	color: #f2f2f2;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
	font-size: 17px;
}
  
.topnav .icon {
	display: none;
}
  
.dropdown {
	float: left;
	overflow: hidden;
}
  
.dropdown .dropbtn {
	font-size: 17px;    
	border: none;
	outline: none;
	color: white;
	padding: 14px 16px;
	background-color: inherit;
	font-family: inherit;
	margin: 0;
}
  
.dropdown-content {
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
}
  
.dropdown-content a {
	float: none;
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	text-align: left;
}
  
.topnav a:hover, .dropdown:hover .dropbtn {
	background-color: #555;
	color: #fff;
}
  
.dropdown-content a:hover {
	background-color: #ddd;
	color: black;
}
  
.dropdown:hover .dropdown-content {
	display: block;
}

.main {
	background-color: #e30613;
}

.main:hover {
	box-shadow: 0 0 5px #ff0000,
				0 0 25px #ff0000,
				0 0 50px #ff0000,
				0 0 100px #ff0000;
}

/*    */

/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {   
	float: left;
	width: 75%;
	background-color: #f1f1f1;
	display: inline;
	flex-wrap: wrap;
}
  
/* Right column */
.rightcolumn {
	float: left;
	width: 25%;
	background-color: #f1f1f1;
	padding-left: 20px;
	display: flex;
	flex-wrap: wrap;
}

/* Add a card effect for articles */
.card {
	background-color: white;
	padding: 20px;
	margin-top: 20px;
	overflow: auto;
}

.cardimg {
	max-width: 30%;
	padding-right: 1rem;
}
  
/* Clear floats after the columns */
.row::after {
	content: "";
	display: table;
	clear: both;
}

.table {
	border: #000000 solid 5px;
	border-style: double;
	border-radius: 1rem;
	background: #e5e7eb;
	padding: 1rem;
	
}

.table a {
	text-decoration: none;
	color: #000000;
}

.table ul li {
	padding-bottom: 1rem;
}

.table ul li a{
	color: #000000;
	text-decoration: none;
	line-height: 1.5;
	font-weight: bold;
}
.table ul li a:hover {
	text-shadow: 0 0 3px #ff0000;
}

.tableactive {
	text-shadow: 0 0 3px goldenrod;
}

/* Gallery */

.gallery {
	--s: 50px; /* control the slanted part */
	
	display: grid;
	height: 350px;
	gap: 8px;
	grid-auto-flow: column;
	place-items: center;
	margin-top: 3rem;
}

.gallery &gt; img {
	width: 0;
	min-width: calc(100% + var(--s));
	height: 0;
	min-height: 100%;
	object-fit: cover;
	clip-path: polygon(var(--s) 0,100% 0,calc(100% - var(--s)) 100%,0 100%);
	cursor: default;
	transition: .5s;
}

.gallery &gt; img:hover {
	width: 15vw; 
}

.gallery &gt; img:first-child {
	min-width: calc(100% + var(--s)/2);
	place-self: start;
	clip-path: polygon(0 0,100% 0,calc(100% - var(--s)) 100%,0 100%);
}

.gallery &gt; img:last-child {
	min-width: calc(100% + var(--s)/2);
	place-self: end;
	clip-path: polygon(var(--s) 0,100% 0,100% 100%,0 100%);
}

.marquee {
	border-top: solid 2px #ff0000;
	padding-top: 1rem;
	font-style: italic;
}

.ftr {
	background-image: linear-gradient(#fff, #ff0000);
	padding: 1rem;
	text-align: center;
}

.social i {
    margin-top: 1rem;
    cursor: pointer;
    font-size: 1.75rem;
    letter-spacing: 1rem;
}

.social i:hover {
    opacity: 0.7;
}

#onlyJSyc {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    border: none;
    border-radius: 2px;
    outline: none;
    background-color: #ff0000;
    color: #fff;
    cursor: pointer;
    padding: 0px;
    width: 100px;
    height: 40px;
	border: #fff solid 1px;
}

#onlyJSyc:hover {
	box-shadow: 1px 1px 20px 1px #e30613;
}

.back{
	text-decoration: none;
	color: #000000;
}

.back:hover {
	color: #e30613;
}

.bttn {
	text-decoration: none;
	border: none;
	outline: 0;
	display: inline-block;
	padding: 8px;
	text-align: center;
	cursor: pointer;
	width: 100%;
	color: #000000;
}
  
.bttn:hover {
	color: goldenrod;
}

.banner {
	display: flex;
	justify-content: center;	
}

.betlink {
	text-decoration: none;
	color: #000000;
}

/* Button */

.button {
	border-radius: 4px;
	background-image: linear-gradient(to right, #000000 , #fff);
	border: none;
	text-align: center;
	font-size: 28px;
	padding: 20px;
	width: 100%;
	transition: all 0.5s;
	margin: 5px;
}
  
.button a {
	color: #fff;
}
  
.button span {
	cursor: pointer;
	display: inline-block;
	position: relative;
	transition: 0.5s;
}
  
.button span:after {
	content: '\00bb';
	position: absolute;
	opacity: 0;
	top: 0;
	right: -20px;
	transition: 0.5s;
}
  
.button :hover span {
	padding-right: 25px;
	color: goldenrod;
}
  
.button a:hover span:after {
	opacity: 1;
	right: 0;
}
  
/* */

.border {
	border-top: #333 2px solid;
	box-shadow: 5px 5px 8px #333;
}

.a404p {
	text-decoration: none;
	color: #000000;
}

.b404p {
	border-radius: 4px;
	background-image: linear-gradient(to right, #ff0000, #fff);
	border: none;
	text-align: center;
	font-size: 28px;
	padding: 20px;
	width: 100%;
	cursor: pointer;
	margin: 5px;
}

.a404p :hover {
	opacity: 0.8;
}
</pre></body></html>