body {
  margin: 0;
  background-color: #001845ff;
  font-family: "Texturina", serif;
  color: #abb7c9;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

.main-contents {
  position: absolute;
  left: 0px;
}

.sidebar {
  padding: 20px 25px;
  position: fixed;
  left: 0;
  top: 245px;
  bottom: 0;
  width: 250px;
  background-color: #023e7dff;
  color: #abb7c9;
  z-index: 50;
}

.profile {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.profile-pic {
  width: 80px;
  height: 80px;
  border: 2px solid #0466c8ff;
  border-radius: 40px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.profile-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50px;
}

.profile-name {
  font-size: 17px;
  font-weight: 700;
}

.short-bio {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 15px;
}

.education,
.occupation {
  font-size: 13px;
  font-weight: 500;
}

.section-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 20px;
  font-size: 15px;
}

#bio-tag,
#social-tag,
#certificate-tag,
#skills-tag {
  transition: all 200ms;
}

#bio-tag:hover,
#social-tag:hover,
#certificate-tag:hover,
#skills-tag:hover {
  color: #abb7c9;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  text-align: center;
  width: 100%;
  height: 245px;
}

.header .per-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.per-banner {
  width: 100%;
}

#social-link {
  visibility: hidden;
}

.main {
  position: relative;
  top: 245px;
  left: 280px;
  margin-top: 10px;
  padding: 20px;
}

.bio {
  text-align: center;
  margin-bottom: 40px;
}

.greeting {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #abb7c9;
}

.bio-paragraph {
  max-width: 900px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.6;
  text-align: justify;
  color: #abb7c9;
}

.links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  justify-content: center;
  margin-top: 0px;
}

.border-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 350px;
  height: 60px;
  border: 1px solid #0466c8ff;
  border-radius: 25px;
  background-color: #023e7dff;
  font-size: 15px;
  text-align: center;
  padding: 40px 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: all 200ms;
}

.border-container:hover {
  background-color: rgba(2, 61, 125, 0.274);
  cursor: pointer;
}

.logo {
  width: 40px;
  height: 40px;
}

.logo img {
  width: 100%;
  height: 100%;
}

.link-logo {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.link-text {
  color: #abb7c9;
  text-decoration: none;
  font-weight: bold;
  text-wrap: nowrap;
}

.link-text:hover {
  text-decoration: underline;
}

#bio-tag,
#social-tag,
#certificate-tag,
#skills-tag {
  cursor: pointer;
}

.certificates {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  justify-content: center;
  margin-top: 40px;
}

.frame-container {
  width: 510px;
  height: 360px;
  border: 2px solid #0466c8ff;
  background-color: #023e7dff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: all 200ms;
}

.frame-container:hover {
  background-color: rgba(2, 61, 125, 0.274);
  cursor: pointer;
}

.certificate {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.document {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* Ensures the whole image fits within the frame */
}

.skills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  justify-content: center;
  margin-top: 40px;
}

.skill-border-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 350px;
  height: 60px;
  border: 1px solid #0466c8ff;
  border-radius: 50px;
  background-color: #023e7dff;
  font-size: 15px;
  text-align: center;
  padding: 40px 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: all 200ms;
}

.skill-border-container:hover {
  background-color: rgba(2, 61, 125, 0.274);
}

.skill-logo-container {
  width: 50px;
  height: 50px;
}

.skill-logo-container img {
  width: 100%;
  height: 100%;
}

.skill-logo {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.skill-text {
  color: #abb7c9;
  text-decoration: none;
  font-weight: bold;
  text-wrap: nowrap;
}

.quote {
  text-align: center;
  margin-top: 20px;
  padding: 20px;
  font-family: "Charm", serif;
  font-size: 20px;
  color: #abb7c9;
}

.quote-text {
  font-style: italic;
  color: #abb7c9;
}

.quote-author {
  font-weight: bold;
  color: #abb7c9;
}
