/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Body setup */
body {
  font-family: "Times New Roman", Times, serif;
  background: #2a2a2a;   /* slightly lighter than black */
  color: #f5f5f5;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Center container */
.center-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

/* Welcome text without box */
.welcome-box {
    
  padding: 0;          /* remove padding */
  background: none;    /* no background */
  box-shadow: none;    /* no shadow */
  border-radius: 0;    /* no rounded edges */
}

/* Make Welcome bigger */
.welcome-box h1 {
  font-size: 3rem;   /* adjust number as needed */
  font-weight: bold; /* keeps it strong */
}

/* Links (plain text side by side) */
.links {
  display: flex;
  flex-direction: row;   /* side by side */
  gap: 2rem;             /* space between links */
  justify-content: center;
}
.link {
  text-decoration: none;
  color: #fff;
  font-size: 1.2rem;
  transition: color 0.3s;
}
.link:hover {
  color: #ccc;
}


/* Secret Button */
#secret-btn {
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  background: #222;
  color: #555;
  font-size: 1.4rem;
  cursor: pointer;
  border: none;
  transition: 0.3s;
  z-index: 9999;
}
#secret-btn:hover,
#secret-btn:focus {
  background: #333;
  color: #bbb;
  outline: none;
}
