/* Giving the whole page that BOTW look */
body {
  font-family: "Copperplate", "Trebuchet MS", sans-serif;
  color: #000000;
  
  font-size: medium;
  margin: 0;
  padding: 0;
  text-align: center;
  text-shadow: 2px 2px 5px #00FFFF; 
} 

body::before{
  content: ""; /* required for pseudo-elements */
  position: fixed; /* makes it stay in place while scrolling */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(images/BOTW-Link.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.88888;
  z-index: -1; /* places it behind all content */
}



/* Making headings look fanc  */
h1 {
  font-size: 3rem;
  margin-top: 50px;
  /* text-shadow: 2px 2px 5px rgba(0,0,0,0.5); */
}

/* Add some buttons */
button {
  background: #00ffff41;
  border: none;
  padding: 12px 24px;
  color: white;
  font-size: 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #00ffffc4;
}
 

/* making a special theme for header */
#secrets {
font-size: 2rem;
color: #000000;
}


/* style for the tab menu */
.tabs {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.tab {
  padding: 10px 20px;
  background: #dddddd6e;
  border-radius: 10px 10px 0 0;
  margin: 0 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.tab:hover {
  background: #bbbbbb;
}

.tab.active {
  background: #444444b9;
  color: rgb(255, 255, 255);
}
.tab-content{
  display: none;
}

.tab-content.active{
  display: block;
}