<style>
/* Adding fonts */
 @font-face { 
   font-family: 'DebugMenu'; 
   src: url('/fonts/DebugMenu.ttf'); } 
 @font-face { 
   font-family: 'rockwell'; 
   src: url('/fonts/rockwell.ttf'); } 

/* Links */
a:link {color: #0041C2;}
a:visited {color: #711DB0;}
a:hover {color: #604CC3;}
a:active {color: #EF4040;}

/* Zoom */
.zoom {
  transition: transform .2s; /* Animation */
  width: 50px;
  height: 50px;
  margin: 0 auto;
}

.zoom:hover {
  transform: scale(1.2); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

/* Background & Body */
body {
  background-image: url("img/bg/tamed.png");
  background-color: black;
  background-repeat: repeat;
	background-position: center;
  color:#000000;
}

.content {
	margin-left:10%;
	margin-right:10%;
	margin-bottom:200px;
	font-size:12px;
	text-align:left;
	font-family: "Comic Sans MS", "Comic Sans", sans-serif;
}

/* Text */
p {
  font-size: 10px;
  font-family:'Comic Sans MS', sans-serif;
  font-weight: bold;
}

h3 {
  font-size:30px;
  text-align:center;
}

h4 {
  font-size:15px;
  margin:5px;
}

ul {
  font-size:15px;
  font-weight:bold;
}

/* Column Boxes */
.column {
  padding: 20px;
  border: 5px solid black;
  border-radius: 25px;
  flex: 1; /* Let all columns take equal space */
  min-width: 300px; /* Prevent too-narrow columns on smaller screens */
  background-color:rgba(239, 239, 239, 0.2);
}
.link-sections {
  display: flex; /* makes 'things' sidebyside */
  gap: 20px; /* gaps between 'things' */
  justify-content: space-between; 
  flex-wrap: wrap; /* Optional: wraps them on smaller screens */
}c

.link-sections2 {
  display: flex;
  gap: 20px;
  justify-content: left;
  flex-wrap: wrap; /* Optional: wraps them on smaller screens */
  margin-bottom: 40px;
}c

.column2 {
  padding: 10px;
  border: 4px dotted black;
  border-radius: 25px;
  flex: 1; /* Let all columns take equal space */
  min-width: 100%; /* Prevent too-narrow columns on smaller screens */
  background-color:rgba(239, 239, 239, 0.2);
  margin-top: 20px;
}


/* Bar at top of page */
.wrapper {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.topbar {
  position: absolute;
  top: 0px;
  left: 0px;
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: 60px;
  z-index: 11000;
  background-color: #202427;
}
  
/* Fancy Header Experiment */
.header {
  border-radius: 25px;
  background-image: url("img/bg/webcore2.0.png");
	background-size: cover;
	background-position: 10% 10%;
	animation: animatedBackground 40s linear infinite; /*background-repeat: repeat-x; for repeating images*/
	height: 120px;
	overflow: hidden;
  position: relative;
}

.logo {
  width:400px; 
  height:200px; 
  top:60%; 
  left:50%; 
  position:absolute; 
  transform: translate(-50%, -50%);
}

.logo:hover {
  transform: translate(-50%, -50%) scale(1.2);
}

/* Header Animation */
@keyframes animatedBackground {
	from { background-position: 0 0; }
	to { background-position: 0% 100%; }
}

/* Colored Page Content */
.thebox { /* transparent */
  border-radius: 25px;
	background-image: linear-gradient(to right, rgba(255, 103, 36, 1), rgba(255, 125, 51, 0.1));
	padding: 20px
	
}
.thebox2 { /* Red > Orange */
  border-radius: 25px;
	background-image: linear-gradient(to right, #C62300, #ED872D);
	padding: 20px
}

.thebox3 { /* Orange > Peach */
  border-radius: 25px;
	background-image: linear-gradient(to right, #ff7d33, #C62300);
	padding: 20px
}

.thebox4 { /* Red */
  border-radius: 25px;
	background-image: linear-gradient(to right, #C70028, #ff7d33);
	padding: 20px
}

.thebox5 { /* Yellow */
  border-radius: 25px;
	background-image: linear-gradient(to right, #FFD700, #ff7d33);
	padding: 20px
}

.thebox6 { /* purple */
  border-radius: 25px;
	background-image: linear-gradient(to right, #9148E5, #ff7d33);
	padding: 20px
}

.thebox7 { /* -- */
  border-radius: 25px;
	background-image: linear-gradient(to right, #ff7d33, #FF74AA);
	padding: 20px
}

/* Gaps */
.boxgap {
  margin-top: 20px;
}
.boxgap2 {
  margin-top: 70px;
}

/* Icons */
#i-home {
  width:50px; 
  height:50px; 
  display:block;
}

#i-home:hover {
  width:50px; 
  height:50px; 
  display:block;
  content: url("/img/icons/icon-home-hover.png");
}

#i-videos {
  width:50px; 
  height:50px; 
  display:block;
}

#i-videos:hover {
  width:50px; 
  height:50px; 
  display:block;
  content: url("/img/icons/icon-videos-hover.png");
}

#i-art {
  width:50px; 
  height:50px; 
  display:block;
}

#i-art:hover {
  width:50px; 
  height:50px; 
  display:block;
  content: url("/img/icons/icon-art-hover.png");
}

#i-blog {
  width:50px; 
  height:50px; 
  display:block;
}

#i-blog:hover {
  width:50px; 
  height:50px; 
  display:block;
  content: url("/img/icons/icon-blog-hover.png");
}

#i-music {
  width:50px; 
  height:50px; 
  display:block;
}

#i-music:hover {
  width:50px; 
  height:50px; 
  display:block;
  content: url("/img/icons/icon-music-hover.png");
}

#i-games {
  width:50px; 
  height:50px; 
  display:block;
}

#i-games:hover {
  width:50px; 
  height:50px; 
  display:block;
  content: url("/img/icons/icon-games-hover.png");
}

#i-wiki {
  width:50px; 
  height:50px; 
  display:block;
}

#i-wiki:hover {
  width:50px; 
  height:50px; 
  display:block;
  content: url("/img/icons/icon-wiki-hover.png");
}

#i-archive {
  width:50px; 
  height:50px; 
  display:block;
}

#i-archive:hover {
  width:50px; 
  height:50px; 
  display:block;
  content: url("/img/icons/icon-archive-hover.png");
}

#i-contact {
  width:50px; 
  height:50px; 
  display:block;
}

#i-contact:hover {
  width:50px; 
  height:50px; 
  display:block;
  content: url("/img/icons/icon-contact-hover.png");
}

/* Tooltips */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 0px dotted black; /* If you want dots under the hoverable text */
}

  /* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #311465;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border: 3px solid black;
  border-radius: 6px;

  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  top: 115%;
  left: 50%;
  margin-left: -60px;

  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}

  /* Tooltip arrow */
.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 9px;
  border-style: solid;
  border-color: black;
  border-color: black transparent transparent transparent;
}

  /* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

 /* Updates */
.year-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.year-tabs .tab {
  padding: 6px 14px;
  background: #b47ede;
  border-radius: 8px;
  border: 3px solid #000;
  cursor: pointer;
  font-weight: bold;
  font-family:'Comic Sans MS', sans-serif;
}

.year-tabs .tab.active {
  background: #6a1b9a;
  color: white;
  border-color: #000;
  font-family:'Comic Sans MS', sans-serif;
}

.updates {
	height:400px;
	overflow:auto;
	margin:5px;
	padding:5px;
	box-shadow: 0 0 10px #000;
    border-radius: 5px;
	background-color: rgba(255, 255, 255, 0.15);
}

.new {
	color:white;
	background-color: #FF9913;
	border-radius: 5px;
	font-family:'Comic Sans MS', sans-serif;
}

 /* tabs */
.tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.tabs .tab {
  padding: 6px 14px;
  background: #b47ede;
  border-radius: 8px;
  border: 3px solid #000;
  cursor: pointer;
  font-weight: bold;
  font-family:'Comic Sans MS', sans-serif;
}

.tabs .tab.active {
  background: #6a1b9a;
  color: white;
  border-color: #000;
  font-family:'Comic Sans MS', sans-serif;
}

</style>