
   
   /*i leave lots of notes in my code because i have no idea what i'm doing!!*/

body {
  background-color: white;
  color: black;
  font-family: Verdana;
}

/*tropical waters tiled background!*/
body {
  background-image: url("https://calliscove.neocities.org/content/oldweb-tile-tropicalwaters.webp");
  background-repeat: repeat;
  background-attachment: fixed;
}

.container {
  /*centered*/
  margin: 20px auto; 
  
  /*container width*/
  width: 90%;
  max-width: 800px;

  /* container color and style*/
  background-color: white; 
  padding: 30px;
  border-radius: 20px;
  
  /*container shadow*/
  box-shadow: 0px 4px 15px rgba(0,0,0,0.2);
  
  /*text doesnt hit edges*/
  box-sizing: border-box; 
}

/* sidebar n stuff */
.wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px auto;
  width: 95%;
  max-width: 1000px;
}

/*mah sidebar*/
/*styyle*/
.sidebar a {
  display: flex;         /* Makes the link a container for the img and text */
  flex-direction: column;/* Stacks them: Image on top, Text on bottom */
  align-items: center;   /* Centers them horizontally */
  text-align: center;
  
  text-decoration: none; /* Removes the default blue underline */
  color: #333;           /* Dark grey text */
  font-weight: bold;
  
  padding: 10px;         /* Breathing room inside the button */
  margin-bottom: 10px;   /* Space between buttons */
  border-radius: 15px;   /* Rounded corners for the hover effect */
  transition: 0.3s;      /* Smooth hover animation */
}

/*icons for sidebar */
.sidebar img {
  width: 50px;
  height: 50px;
  object-fit: cover;     /* Prevents the image from looking squished if it's not square */
  border-radius: 10px;   /* Rounds the corners of the image itself */
  margin-bottom: 5px;    /* Tiny space between the image and the text */
}

/* hovering*/
.sidebar a:hover {
  background-color: #f0f0f0; /* Light grey background appears on hover */
  transform: scale(1.05);    /* Slightly grows the button! */
  color: #ff0066;            /* Text turns pink */
}

/* mah container*/
.content {
  flex: 3;  /*3x wider than sidebar*/
  min-width: 300px;
  background-color: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
}