.header-text {
  display: flex;
  justify-content: center;
  align-items: center;
}

body {
  font-family: "Poppins", arial;
  padding: 50px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(26, 25, 25, 0.777);
  color: rgba(26, 25, 25, 0.777);
}

.container {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  background-color: white;
  max-width: 700px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #6ea1d4;
}

a:hover {
  color: #6ea1d480;
}

.text {
  margin-bottom: 0px;
  font-weight: 600;
  font-size: 20px;
}

h1 {
  font-size: 20px;
}

.social-links {
  margin-top: 20px;
}

.scroll-bar::-webkit-scrollbar {
  width: 6px;
}

.scroll-bar::-webkit-scrollbar-thumb {
  background-color: #005d47be;
  border-radius: 5px;
}

.scroll-bar::-webkit-scrollbar-track {
  background-color: #fcfcfc;
}

.email-container {
  margin-top: 10px;
}

.jobTitle {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  /* gap: 5px; */
}
p {
  margin: 5px 0px;
}
@media (min-width: 768px) {
  body {
    height: 100dvh;
    font-size: 20px;
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .text {
    margin-bottom: 0px;
    font-weight: 600;
    font-size: 25px;
  }
  h1 {
    font-size: 30px;
  }
}

@media (min-width: 1200px) {
  body {
    height: 100dvh;
    font-size: 20px;
    padding-top: 200px;
    padding-bottom: 200px;
  }
  .text {
    margin-bottom: 0px;
    font-weight: 600;
    font-size: 25px;
  }
  h1 {
    font-size: 30px;
  }
}
