/* General styling for the entire document */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Calibri', sans-serif;
    color: cornsilk;
  }

  body {
    background-color: #14151f;
    font-size: 20px;
    line-height: 1.6;
  }

  div {
    border-radius: 5px;
  }

  header {
    background: #14151f;
    padding: 10px 0;
    color: cornsilk;
    text-align: center;
  }

  header h1 {
    margin: 0;
  }

  #title {
    margin-left: 3%;
  }

  #footer {
    height: 50px;
    width: 100%;
    clear: both;
    position: relative;
  }

    /* Main content area */
  .content {
    max-width: 700px;
    margin: 20px auto;
    padding: 20px;
    background-color: #1e1f29;
    border-radius: 8px;
  }

  p{
    font-family: 'Calibri';
  }

  li{
    margin: 0px 20px;
    font-family: 'Calibri'; 
  }
  
  nav {
    text-align: left;
    position: relative; /* Ensures it's on top if nothing else has a defined z-index */
    z-index: 1000; /* High z-index to bring it to the front */
  }

  nav a {
    text-decoration: none;
    color: cornsilk;
  }

  nav a:hover {
      color: #bc64ed; /* Hover color - Purple, adjust as needed */
  }

  nav ul {
    list-style: none;
    background-color: #1e1f29;
    text-align: center;
    padding: 10px;
  }

  nav ul li {
    display: inline;
  }

  nav ul a {
    text-decoration: none;
    color: cornsilk;
    padding: 15px 20px;
  }

  /* Responsive adjustments */
  @media only screen and (max-width: 430px) {
    body, .content {
      padding: 10px;
    }
  
    nav ul li a {
      padding: 10px 15px;
    }
  }

/* Custom colors for each profile section */
.profile {
  color: #6495ed; /* Cornflower Blue */
}

.skills {
  color: #6495ed; /* Cornflower Blue */
}

.certifications {
  color: #6495ed; /* Cornflower Blue */
}

.education {
  color: #6495ed; /* Cornflower Blue */
}

.hobbies {
  color: #6495ed; /* Cornflower Blue */
}

.work-experience {
  color: #6495ed; /* Cornflower Blue */
}

.work-place {
  color: #c9352a; /* Coralish */
}

.titlename {
  color: #bc64ed; /* Purple */
}

.visitCount{
  text-align:center;
}