* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 10px;
}

body {
  background-color: #f8f6f3;
  display: flex;
  justify-content: center;
  padding: 2rem;
}

.card-container {
  background: #f8f6f1;
  border-radius: 1rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
  max-width: 76.8rem;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.container {
  width: 80%;
  max-width: 100rem;
  margin: 0 auto;
}

.navbar {
  background-color: #203247;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.hero {
  background: #203247;
  color: white;
}
.hero__span {
  font-weight: 300;
}

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

@media (max-width: 76.8rem) {
  .hero-contant {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.logo {
  padding-top: 2rem;
  margin: 0;
  color: white;
}

.hero-text h1 {
  font-size: 3rem;
}

.hero-photo {
  padding-bottom: 2rem;
}

.hero-photo img {
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
}

.about h2 {
  font-size: 2rem;
  padding: 1rem 0;
  border-bottom: 0.2rem solid #203247;
}

.about h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  position: relative;
}
.about h3::after {
  content: "";
  display: block;
  width: 4rem;
  height: 0.3rem;
  background: #203247;
  margin-top: 0.6rem;
}

.about p {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.about ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.about li {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  list-style-type: disc;
}

.about strong {
  color: #203247;
}

.project h2 {
  font-size: 2rem;
  padding: 1rem 0;
}

.project-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

@media (max-width: 76.8rem) {
  .project-content {
    display: block;
  }
}
.project-card {
  background-color: #f9f8f5;
  padding: 0.5rem;
  border: 0.1rem solid #ddd;
  border-radius: 0.8rem;
  box-shadow: 0.05rem 0.05rem gray;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-card:hover {
  transform: translateY(-1rem);
  filter: brightness(95%);
}

.project-card img {
  height: 7rem;
  width: 15rem;
  padding: 0.5rem;
  border-radius: 0.8rem;
}

.skills-ability {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

@media (max-width: 76.8rem) {
  .skills-ability {
    flex-direction: column;
  }
}
.skills-card {
  font-size: 1.5rem;
  padding: 0.5rem;
  border: 0.1rem solid #ddd;
  border-radius: 0.8rem;
  box-shadow: 0.05rem 0.05rem gray;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.skills-card:hover {
  border: 0.1rem solid #203247;
}

.project-card h2 {
  font-size: 2rem;
}

.project-card p {
  font-size: 1.5rem;
}

.contact {
  padding-bottom: 2rem;
}

@media (max-width: 76.8rem) {
  .contact-content {
    flex-direction: column;
  }
}
.contact-text h2 {
  padding: 1rem 0;
}

.contact-text p {
  font-size: 2rem;
}

.contact-button {
  padding-top: 3rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-button:hover {
  transform: translateY(-0.5rem);
}

.contact-btn {
  background-color: #203247;
  color: white;
  border-radius: 0.8rem;
  padding: 0.5rem;
  text-decoration: none;
  font-size: 2rem;
}

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

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-bottom: 2rem;
}

.social-links a {
  font-size: 1.5rem;
  color: black;
  text-decoration: none;
  font-weight: 400;
  box-shadow: 0.05rem 0.05rem gray;
  border: 0.1rem solid #ddd;
  padding: 0.5rem;
  border-radius: 0.8rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.social-links a:hover {
  transform: translateY(-0.5rem);
  filter: brightness(90%);
}

#scrollTopBtn {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 100;
  display: none;
  background-color: #203247;
  color: white;
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s;
}
#scrollTopBtn:hover {
  background-color: #203247;
}/*# sourceMappingURL=style.css.map */