body {
  font-family: Georgia, serif;
  color: white;
  background-color: #2c3e50;
  margin: 0;
  padding: 0;
}

.header {
  background-color: black;
  padding: 15px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  display: initial;
  text-align: center;
  justify-content: space-between;
}

.header.show {
  display: block;
}

.header a {
  color: white;
  text-decoration: none;
  padding: 40px;
  font-size: 18px;
  /* Increase the font size */
  font-weight: normal;
  letter-spacing: 2px;
  /* Add spacing between letters */
}

header {
  margin-bottom: 2em;
  text-align: center;
  margin: 30px 0;
  padding: 20px;
}

.footer {
  background-color: black;
  color: white;
  padding: 20px 0;
}

.footer-links {
  text-align: center;
  padding-bottom: 20px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  padding: 0 15px;
  font-size: 18px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
}

.poem-section {
  flex-basis: 50%;
  padding: 20px;
  color: #f0f0f0;
  text-align: center;
}

.contact-form {
  flex-basis: 50%;
  background-color: #252525;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 90%;
  padding: 12px;
  border: 1px solid #464545;
  border-radius: 4px;
  resize: vertical;
  background-color: white;
  color: black;
}

.contact-form button[type="submit"] {
  background-color: #000000;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: center;
}

.contact-form button[type="submit"]:hover {
  background-color: #45a049;
}

/* Responsive layout */
@media screen and (max-width: 600px) {
  .navbar {
    font-size: 14px;
  }
  .content-below-navbar {
    margin-top: 80px !important;
  }
  .footer-content {
    flex-direction: column;
  }

  .poem-section,
  .contact-form {
    flex-basis: 100%;
  }
}

.section {
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 20px 10px 20px;
  border-bottom: 1px solid #f0f0f0;
}

.cert-box {
  background-color: #34495e;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 10px 0;
  padding: 20px;
  display: flex;
  align-items: center;
  flex-direction: row;
}

.cert-image img {
  max-width: 200px;
  /* Adjust as needed */
  margin-right: 20px;
}

.cert-details {
  flex-grow: 1;
  /* Takes the remaining space */
}

a {
  color: #f0f0f0;
  /* Light gray color; adjust as needed */
  text-decoration: underline;
}

h2 {
  text-decoration: underline;
}

.parallax-section {
  /* Set the height as needed or leave it flexible */
  background-image: url("../img/cloudcerts.jpg");
  /* Change to your desired background image */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.parallax-section-2 {
  /* Set the height as needed or leave it flexible */
  background-image: url("../img/tinker.png");
  /* Change to your desired background image */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.parallax-section-3 {
  /* Set the height as needed or leave it flexible */
  background-image: url("../img/black.png");
  /* Change to your desired background image */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.parallax-section-4 {
  /* Set the height as needed or leave it flexible */
  background-image: url("../img/minimal.png");
  /* Change to your desired background image */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#awards {
  /* If needed, add padding or other styling to position the content inside the parallax section */
  padding: 50px 0;
}

.about-me-section {
  background-color: #34495e;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 20px 0;
  padding: 20px;
  color: #f0f0f0;
  font-size: 18px;
  /* Increase the font size as per your preference */
  line-height: 1.6;
  /* Increase the line spacing */
}

.about-me-section h2 {
  font-weight: bold;
  margin-bottom: 10px;
  text-decoration: underline;
}

.about-me-section p {
  margin: 0;
}

.course-section {
  background-color: #34495e;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 20px 0;
  padding: 20px;
  color: #f0f0f0;
  font-size: 18px;
  /* Increase the font size as per your preference */
  line-height: 1.6;
  /* Increase the line spacing */
}

.course-section h2 {
  font-weight: bold;
  margin-bottom: 10px;
  text-decoration: underline;
}

.course-section p {
  margin: 0;
}

.resume-section {
  background-color: #34495e;
  /* Same as .cert-box */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* Same as .cert-box */
  margin: 20px 0;
  /* Add some vertical margin */
  padding: 20px;
  /* Add padding to match the .cert-box */
  color: #f0f0f0;
  /* Same color as other text */
}

.resume-section h2 {
  font-weight: bold;
  margin-bottom: 10px;
  text-decoration: underline;
  text-align: center;
  /* Underlined to match other h2 elements */
}

.resume-section p {
  margin: 0;
}

.project-section {
  margin-bottom: 30px;
}

.project-section h1 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #f0f0f0;
}

.project-section h2 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #f0f0f0;
}

.project-section ul {
  list-style-type: square;
  margin-left: 20px;
}

.project-section ul li {
  margin-bottom: 5px;
}

.project-detail {
  background-color: #34495e;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 20px 0;
  padding: 20px;
  color: #f0f0f0;
  font-size: 18px;
  /* Increase the font size as per your preference */
  line-height: 1.6;
  /* Increase the line spacing */
}

.sub-list {
  margin-left: 20px;
}

.sub-list li {
  list-style-type: circle;
}

#successMessage {
  display: none;
}

.honeypot-field {
  display: none !important;
}

.hidden {
  display: none;
}