/* Color key:
   dark blue: #8e9aaf
   purple: #cbc0d3
   dark pink: #efd3d7
   light pink: #feeafa
   light blue: #dee2ff
*/

/* Body styling: Adding background image and centering everything */
body {
  background-image: url('https://i.pinimg.com/736x/24/c0/23/24c023eba0d3adfff8a9ae2e2a42db31.jpg');
  margin: 0;
  height: 100vh;
  font-family: "Verdana", cursive, sans-serif;
  display: flex; /* Align elements vertically */
  justify-content: center; /* Center content horizontally */
  align-items: center; /* Center content vertically */
}


/* Container styling */
.container {
  background: #dee2ff; /* Light blue background */
  width: 700px;
  height: 450px;
  display: flex;
  border: 3px groove #cbc0d3; /* Purple border */
  box-shadow: -10px 10px 0px 0px rgba(0, 0, 0, 0.6); /* Shadow effect */
  color: #8e9aaf; /* Dark blue text color */
}

/* Navigation styling */
nav {
  width: 180px;
  border-right: 2px groove #cbc0d3;
  padding: 20px;
  box-sizing: border-box;
}

/* Navigation list style */
nav ul {
  list-style: none;
  padding-left: 0;
}

/* Navigation item style */
nav li {
  margin-bottom: 15px;
}

/* Link styling */
nav a {
  color: #8e9aaf;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
}

/* Hover effect for links */
nav a:hover {
  text-decoration: underline;
}

/* Content styling */
.content {
  flex: 1;
  padding: 30px;
  font-size: 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center content vertically */
  align-items: center; /* Center content horizontally */
  text-align: center; /* Center text inside content */
}

/* Heading color (for h1 tags in content) */
.content h1 {
  color: #CCB3B7; /* Dark pink color for h1 */
}
