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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

body {
  overflow-x: hidden;
}
body nav {
  background-color: rgb(242, 242, 242);
  position: sticky;
  top: 0;
  z-index: 5;
  box-shadow: 0 1px 4px rgb(146, 161, 176);
}
body nav ul {
  display: flex;
  margin-bottom: 0;
}
body nav ul li {
  list-style-type: none;
  margin: 1rem;
}
body nav ul li a {
  color: rgb(30, 30, 30);
  text-decoration: none;
}
body nav ul li a:hover {
  color: #69df8a;
}
body .navbar {
  width: 100%;
  box-shadow: 0 1px 4px rgba(146, 161, 176, 0.15);
  background-color: rgb(242, 242, 242);
  padding: 0;
  display: none;
}
body .navbar .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
  height: 60px;
}
body .navbar .nav-container input[type=checkbox]:checked ~ .menu-items {
  transform: translateX(0);
}
body .navbar .nav-container input[type=checkbox]:checked ~ .hamburger-lines .line1 {
  transform: rotate(45deg);
}
body .navbar .nav-container input[type=checkbox]:checked ~ .hamburger-lines .line2 {
  transform: scaleY(0);
}
body .navbar .nav-container input[type=checkbox]:checked ~ .hamburger-lines .line3 {
  transform: rotate(-45deg);
}
body .navbar .nav-container .checkbox {
  position: absolute;
  display: block;
  height: 32px;
  width: 32px;
  top: 30%;
  left: 3%;
  z-index: 5;
  opacity: 0;
  cursor: pointer;
}
body .navbar .nav-container .hamburger-lines {
  display: block;
  height: 26px;
  width: 32px;
  position: absolute;
  top: 30%;
  left: 3%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
body .navbar .nav-container .hamburger-lines .line {
  display: block;
  height: 4px;
  width: 100%;
  border-radius: 10px;
  background: rgb(30, 30, 30);
}
body .navbar .nav-container .hamburger-lines .line1 {
  transform-origin: 0% 0%;
  transition: transform 0.4s ease-in-out;
}
body .navbar .nav-container .hamburger-lines .line2 {
  transition: transform 0.2s ease-in-out;
}
body .navbar .nav-container .hamburger-lines .line3 {
  transform-origin: 0% 100%;
  transition: transform 0.4s ease-in-out;
}
body .navbar .nav-container .menu-items {
  box-shadow: inset 0 0 2000px rgba(255, 255, 255, 0.5);
  height: 100vh;
  width: 100%;
  transform: translate(-150%);
  transition: transform 0.5s ease-in-out;
  text-align: center;
  background-color: #69df8a;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0%;
}
body .navbar .nav-container .menu-items ul {
  display: flex;
  flex-direction: column;
  padding-left: 0;
}
body .navbar .nav-container .menu-items ul li {
  list-style-type: none;
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
  font-weight: 500;
}
body .navbar .nav-container .menu-items ul li a {
  text-decoration: none;
  color: #0e2431;
  font-weight: 500;
  font-size: 1.2rem;
  padding: 0.7rem;
}
body .navbar .nav-container .menu-items ul li a:hover {
  color: rgb(242, 242, 242);
  font-weight: bolder;
}
body main section.main-area {
  min-height: 70vh;
  background-color: rgb(242, 242, 242);
  display: flex;
  flex: wrap;
  justify-content: center;
  align-items: center;
}
body main section.main-area div.info {
  flex-basis: 450px;
  padding: 1rem;
}
body main section.main-area div.info h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}
body main section.main-area div.info h2 {
  font-size: 1rem;
  line-height: 1.6;
}
body main section.main-area div.info a {
  color: rgb(255, 255, 255);
  background-color: #69df8a;
  padding: 0.5rem;
  font-size: 1rem;
  border-radius: 20px;
  display: inline-block;
  margin-top: 1rem;
  text-decoration: none;
  transition: all 0.2s ease;
}
body main section.main-area div.info a:hover {
  transform: scale(1.2);
}
body main section.main-area div.img-area {
  flex-basis: 450px;
}
body main section.main-area div.img-area img {
  width: 100%;
}
body main section.about-me {
  background-color: rgba(105, 233, 138, 0.5);
  padding: 5rem 0;
  display: flex;
  justify-content: center;
  line-height: 1.6;
}
body main section.about-me section.description {
  width: 50%;
  text-align: center;
}
body main section.about-me section.description h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
body main section.about-me section.description .progress-bar-area p {
  margin-top: 1rem;
}
body main section.resume {
  display: flex;
  flex-wrap: wrap;
  padding: 2rem;
  background-color: rgba(242, 242, 242, 0.5);
}
body main section.resume section.table {
  flex: 5 0 500px;
  padding: 2rem;
}
body main section.resume section.table table {
  --bs-table-bg: none;
  border-collapse: collapse;
}
body main section.resume section.table table tr {
  border-bottom: 2px solid rgb(124, 124, 124);
  transition: all 0.2s ease;
}
body main section.resume section.table table tr:hover {
  background-color: rgba(105, 233, 138, 0.6);
}
body main section.resume section.table table tr td {
  padding: 1rem;
}
body main section.resume section.picture {
  flex: 1 1 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
body main section.resume section.picture img {
  width: 80%;
}
body main section.resume section.picture div.rect2 {
  width: 50vw;
  height: 40vh;
  border: 10px solid rgba(105, 233, 138, 0.7);
  position: absolute;
  top: 300px;
  left: -300px;
  z-index: -1;
}
body main section.resume section.picture div.rect3 {
  width: 50vw;
  height: 40vh;
  border: 10px solid rgba(105, 233, 138, 0.7);
  position: absolute;
  top: 0;
  left: -100px;
  z-index: -1;
}
body main section.contact-us {
  background-color: rgb(242, 242, 242);
  display: flex;
  height: 100vh;
}
body main section.contact-us section.form {
  flex: 1 1 600px;
  padding-top: 5%;
}
body main section.contact-us section.form form {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 1.5rem;
}
body main section.contact-us section.form form div {
  margin: 0.5rem;
}
body main section.contact-us section.form form div label {
  font-size: 1.5rem;
  margin-right: 1rem;
}
body main section.contact-us section.form form div input,
body main section.contact-us section.form form div textarea {
  background-color: #69df8a;
  color: white;
  font-size: 1.25rem;
  padding: 0.5rem 0.25rem;
  border: none;
  width: 90%;
}
body main section.contact-us section.form form div textarea {
  vertical-align: top;
}
body main section.contact-us section.form form button {
  align-self: center;
  background-color: #69df8a;
  color: white;
  border: none;
  cursor: pointer;
  padding: 0.75rem 1.5rem;
  font-size: 2rem;
  border-radius: 10px;
}
body main section.contact-us div.line {
  background-color: gray;
  width: 2.5px;
}
body main section.contact-us section.contact {
  flex: 1 1 550px;
  display: flex;
  align-items: center;
  padding: 2rem;
}
body main section.contact-us section.contact div.content h2 {
  margin: 1rem 0rem;
}

@media screen and (max-width: 1300px) {
  body main section.contact-us {
    flex-direction: column;
  }
  body main section.contact-us div.line {
    width: 100vw;
    height: 2.5px;
  }
  body main section.contact-us section.contact div.content {
    margin: 0 auto;
  }
}
@media screen and (max-width: 800px) {
  body nav {
    display: none;
  }
  body .navbar {
    display: block;
  }
  body main section.about-me section.description {
    width: 90%;
  }
  body main section.resume {
    overflow-x: auto;
  }
  body main section.resume section.picture .rect,
  body main section.resume section.picture .rect2,
  body main section.resume section.picture .rect3 {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  body nav {
    position: static;
  }
  body nav ul {
    flex-direction: column;
  }
  body main section.main-area {
    flex-direction: column;
    padding: 10px;
  }
}/*# sourceMappingURL=style.css.map */