body {
    height: 100%;
     background: linear-gradient(90deg,#0066ff,#1c00b8);
     font-family: 'Arial', sans-serif;
     margin: 0;
     padding: 0;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
}

header {
  background-color: #111;
  color: #ffffff;
  z-index: 2; 
  position: relative;
  text-align: center;
  height: 50px;
  width: 100%;
}

#main {
  transition: margin-left .5s;
  padding: 5px;
  align-items: center;
  justify-content: center;
}

#sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
  

}

#sidebar a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 18px;
  color: #818181;
  display: block;
  transition: 0.3s;
  z-index: 1;
}

#sidebar a:hover {
  color: white;
  box-shadow: 0 0px 15px hsl(240, 100%, 61%);
  z-index: 1;
}

#sidebar .closebtn {
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
  z-index: 1;
}

.container {
  height: 100vh;
}

.roundedBox {
  width: 80%;
  margin-top: auto;
  margin-bottom: auto;
  background-color: #0000009b;
  color: white;
  text-align: left;
  font-size: 18px;
  border-radius: 15px; /* Adjust the value for the desired roundness */
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(25px);
  padding: 20px;
  margin-top: 5%;
}

#Penguins_collage {
  width: 449px;
  height: 599px;
  border-radius: 15px;
  display: flex;
}

#general_facts {
  color: rgb(184, 229, 255);
}

#Etymology {
  color: rgb(184, 229, 255);
}

#Pinguinus {
  color: rgb(67, 186, 255);
}

#Living_and_recently_extinct_species {
  color: rgb(184, 229, 255);
}

#TopLine {
  padding: 1px 1px 1px 32px;
  text-decoration: none;
  font-size: 18px;
  color: #a6c1d6;
  display: block;
  transition: 0.3s;
  z-index: 1;
}

#Debug_Content {
  visibility: hidden;
}

#Music {
  width: 100%;
  height: 300px;
  visibility: hidden;
}

#img1 {
  border-radius: 10px;
}

#pfp {
  border-radius: 100%;
  width: 40px;
  height: 40px;
}

.links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px; /* Spacing between links */
}

.link-item {
  display: flex;
  align-items: center;
  gap: 10px; /* Space between icon and text */
  text-decoration: none;
  color: #00d9ff; /* Aqua Frost Color */
  font-size: 1.3rem;
  font-weight: bold;
  transition: transform 0.3s, color 0.3s;
}

.link-item i {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

/* Hover Effect */
.link-item:hover {
  color: #34423f; /* Bright Magenta on Hover */
  transform: scale(1.1); /* Slight scaling */
}

.link-item:hover i {
  transform: rotate(360deg); /* Rotate the icon on hover */
}

