body {
    background-color: #eeeeee;
    color: navy; 
    font-family: "Gill Sans", sans-serif;
    font-weight: bold;
}

section {
    padding: 20px;
    margin: 10px;
}

#about {
    text-align: center;
}

h2 {
    font-size: 35px;
    font-weight: light;
    color: #2b3856;
}

h1 {
    font-size: 55px;
    color: navy;
    text-align: center;
    
}

.job {
    background-color: #dbe4f0;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 40px;
    width: 100%;
}

#connect a {
    color: #0000a0;
    text-decoration: none; 
}

nav {
    position: sticky;
    top: 0;
    text-align: center;
}

nav a {
    margin-right: 15px;
}

.job-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#connect ul {
    display: flex;
    gap: 20px;
    list-style: none;
    padding-left: 0;
}

#skills ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
}

#skills li {
  padding: 10px 20px;
  border: 5px solid #ccc;
  border-radius: 10px;
}

#leave-message {
  margin-top: 40px;
}

form {
  margin-top: 20px;
}

form label {
  display: inline-block;
  margin-top: 15px;
}

form input,
form textarea {
  width: 100%;
  max-width: 500px;
  padding: 12px;
  margin-top: 4px;
  font-size: 16px;
}

form textarea {
  min-height: 120px;
}

form button,
#messages button {
  padding: 12px 16px;
  margin-top: 16px;
  font-size: 16px;
  cursor: pointer;
}

#messages li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

#messages ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
}

#messages {
  display: none;
}

#projects ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  padding: 0;
}

#projects li {
  border: 5px solid #ccc;
  border-radius: 10px;
  padding: 10px 20px;
}

@media (max-width: 768px) {
  #projects ul {
    flex-direction: column;
  }
}