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

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

body {
  overflow: visible;
}
body nav {
  background-color: white;
  position: sticky;
  top: 0;
  z-index: 5;
}
body nav ul {
  display: flex;
}
body nav ul li {
  list-style-type: none;
  margin: 1rem;
}
body nav ul li a {
  color: black;
  text-decoration: none;
  transition: all 0.1s ease;
}
body nav ul li a:hover {
  color: rgb(255, 154, 61);
}
body main section.main-area {
  min-height: 70vh;
  background-color: white;
  display: flex;
  flex-wrap: 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;
}
body main section.main-area div.info h2 {
  font-size: 1rem;
}
body main section.main-area div.info a {
  color: white;
  background-color: rgb(255, 154, 61);
  padding: 0.25rem 0.5rem;
  font-size: 1.2rem;
  border-radius: 20px;
  display: inline-block;
  margin-top: 2rem;
  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.info div.img-area {
  flex-basis: 450px;
}
body main section.main-area div.info div.img-area img {
  width: 100%;
}
body main section.about-me {
  background-color: rgb(255, 154, 61);
  padding: 5rem 1rem;
  display: flex;
  justify-content: center;
}
body main section.about-me section.description {
  width: 50%;
  text-align: center;
}
body main section.about-me section.description h2 {
  font-size: 2rem;
}
body main section.about-me section.description .progress-bar-area p {
  margin-top: 1rem;
}
body main section.resume {
  overflow-x: auto;
  display: flex;
  flex-wrap: wrap;
  padding: 2rem;
}
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 gray;
  transition: all 0.2s ease;
}
body main section.resume section.table table tr:hover {
  background-color: rgb(255, 190, 130);
}
body main section.resume section.table table td {
  padding: 1rem;
}
body main section.picture {
  flex: 1 1 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
body main section.picture img {
  width: 80%;
}
body main section.picture div.greenRect {
  width: 30vw;
  height: 90vh;
  border: 10px solid rgb(255, 190, 130);
  position: absolute;
  top: 30px;
  left: 80px;
  z-index: -1;
}
body main section.picture div.greenRect2 {
  width: 50vw;
  height: 40vh;
  border: 10px solid rgb(255, 190, 130);
  position: absolute;
  top: 300px;
  left: -300px;
  z-index: -1;
}
body main section.picture div.greenRect3 {
  width: 50vw;
  height: 40vh;
  border: 10px solid rgb(255, 190, 130);
  position: absolute;
  top: 0px;
  left: -100px;
  z-index: -1;
}

@media screen and (max-width: 800px) {
  body main section.about-me section.description {
    width: 80%;
  }
  body main section.resume section.picture div.greenRect,
  body main section.resume section.picture div.greenRect2,
  body main section.resume section.picture div.greenRect3 {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  body nav {
    position: static;
  }
  body nav ul {
    flex-direction: column;
  }
}/*# sourceMappingURL=style.css.map */