body {  /*Default Body*/
  font-family: "IBM Plex Mono", monospace; 
  margin: 0;
  padding: 0;
  background-color: hsl(0, 0%, 53%);
  color: #ffffff;
}

nav .Logo {   /*Flexbox for Logo and its position alongside with nav-bar menu*/
  position: absolute;
  left: 10px;
  display: flex; 
  height: 20px;
  align-items: center;
  width: auto;
}

.Logo img { /*Relative position and size of logo*/
  height: 30px;
  margin-left: 5px;
}

.avatar-container {
  text-align: center;
  margin: 50px 0;
  text-shadow: 4px 4px 4px rgba(0,0,0,0.35);
  line-height: 25px;
}

.avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #0cd175;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.subtitle {
  font-size: 1.5rem;
}

.waves {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: auto;
  
}

nav {
  display: flex;
  background-color: #F2F2F2;
  padding: 0.5rem 1rem;
  position: relative;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  box-shadow: 0 4px 5px rgba(0,0,0,0.2);
}

nav ul {
  font-weight: bold;
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
  line-height: 25px;
}

nav a {
  color: #000000;
  text-decoration: none;
}

nav a:hover {
  color: #4b4b4b;
  text-decoration: underline;
}

.linear-gradient-box {
  position: absolute; /* Adjust based on nav height */
  z-index: -1;
  top: -153px;
  height: 570px;
  background: linear-gradient(to bottom, #ffffff, #696969);
  width: 100%;
}