body {
  background-color: white;
  font-family: Georgia, 'Times New Roman', Times, serif;
}
.cont {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 50vh;
  text-align: center;
}
.page-h {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 60vh;
  text-align: center;
  border-bottom: 1px solid black;
}

.profile {
  display: flex;
  align-items: center;
  gap: 50px;
}

.profile .text {
  text-align: left;
}

.profile .text h1 {
  font-size: 28px;
  margin: 0;
}

.profile .text p {
  font-size: 18px;
  margin: 10px 0 0;
}

.edu-page {
  height: 100vh;
}
.backron {
  padding: 10px;
  gap: 1rem 2rem;
  margin-top: 20px;
  margin-bottom: 20px;
  
}
.profile-section {
    margin-bottom: 2rem;
    padding: 2rem 0;
}
#profile-banner {
    border: 1px solid black;
    color: black;
    border-radius: 8px;
    padding: 3rem;
    margin-top: 1rem;
    text-align: center;
}
#profile-banner h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
#profile-banner p {
    font-size: 1.1rem;
}

.footer {
  background: white;
  color: black;
  padding: 2rem 0;
  text-align: center;
  border: 1px solid black;
}

.footer .social-icons {
  margin: 1rem 0;
}

.footer .social-icons a {
  color: black;
  margin: 0 0.5rem;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.footer .social-icons a:hover {
  color: #ff6f61;
}

.footer .footer-links {
  margin: 1rem 0;
}

.footer .footer-links a {
  color: #fff;
  margin: 0 0.5rem;
  text-decoration: none;
  transition: color 0.3s;
}

.footer .footer-links a:hover {
  color: #ff6f61;
}