@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap");
body {
  font-family: "Roboto Mono", monospace;
  font-size: 1rem;
}

/*====================
Reset CSS
======================*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

a {
  text-decoration: none;
  transition: all 0.3s linear;
  color: #474747;
}

img {
  max-width: 100%;
}

ul {
  list-style: none;
}

/*====================
Common CSS
======================*/
.container {
  max-width: 100rem;
  width: 80%;
  margin: 0 auto;
}

.btn {
  font-family: "Roboto Mono", monospace;
  font-size: 1rem;
  font-weight: 700;
  color: #474747;
  border: 1px solid #FD6E0A;
  padding: 0.75rem 2rem;
  border-radius: 5px;
  text-transform: capitalize;
  cursor: pointer;
  transition: all 0.3s linear;
}
.btn.btn-box {
  background-color: #FD6E0A;
  color: white;
}

.section {
  text-align: center;
}
.section__title {
  color: #181818;
  font-size: 2rem;
}
.section__title--resume, .section__title--experience {
  text-align: center;
  padding: 1rem 0;
  background-color: #FD6E0A;
  border-radius: 5px 5px 0 0;
}
.section__description {
  color: #757575;
  font-size: 1rem;
  padding: 2rem 0;
}

.header {
  background-color: #FFF8F3;
  background-repeat: no-repeat;
  background-position: bottom right, left top;
  background-size: 40rem, contain;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
.navbar__logoLink {
  color: #181818;
  font-size: 2rem;
  font-weight: 800;
}
.navbar__logoOrange {
  color: #FD6E0A;
}
.navbar__menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.navbar__link {
  position: relative;
  padding-bottom: 0.75rem;
}
.navbar__link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: 0;
  background-color: #FD6E0A;
  transition: all 0.3s linear;
}
.navbar__link:hover, .navbar__link:focus, .navbar__link:active {
  color: #FD6E0A;
}
.navbar__link:hover::after, .navbar__link:focus::after, .navbar__link:active::after {
  width: 100%;
}

.banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 4rem;
}
.banner__content {
  max-width: 50rem;
}
.banner__subtitle {
  color: #474747;
  font-size: 2.5rem;
  font-weight: 400;
  padding-bottom: 2rem;
}
.banner__title {
  color: #181818;
  font-size: 3rem;
  font-weight: 700;
}
.banner__description {
  color: #757575;
  font-size: 1rem;
  padding: 2rem 0;
}
.banner__img {
  width: 33rem;
  vertical-align: middle;
}

.about {
  margin: 5rem 0;
}
.about__content {
  background-color: #FFF8F3;
  border-radius: 5px;
  padding: 3rem 5rem;
}
.about__info {
  display: flex;
  justify-content: space-around;
  text-align: center;
}
.about__title {
  color: #757575;
  margin-bottom: 1rem;
}
.about__description {
  color: #474747;
  font-weight: 500;
}

.services {
  margin: 5rem 0;
}
.services__info {
  display: flex;
  justify-content: space-around;
  gap: 2.5rem;
}
.services__infoItem {
  padding: 1rem;
  background-color: white;
  box-shadow: 1px 1px 20px 1px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}
.services__infoItem:hover {
  background-color: #FFF8F3;
}
.services__title {
  color: #474747;
  margin: 1rem 0;
}
.services__description {
  color: #757575;
}

.resume {
  margin: 5rem 0;
}
.resume__info {
  display: flex;
  justify-content: space-around;
  gap: 2.5rem;
}
.resume__education, .resume__experience {
  box-shadow: 1px 1px 20px 1px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}
.resume__infoItem {
  padding: 1rem;
  border-left: 1px dashed #FD6E0A;
  border-right: 1px dashed #FD6E0A;
  border-bottom: 1px dashed #757575;
}
.resume__infoItem:hover {
  background-color: #FFF8F3;
}
.resume__infoItem:last-child {
  border-bottom: 1px dashed #FD6E0A;
  border-radius: 5px;
}
.resume__title {
  color: #474747;
}
.resume__subTitle {
  margin: 1rem 0;
  font-weight: 500;
  color: #757575;
}
.resume__description {
  color: #757575;
  font-size: 0.9rem;
}
.resume__btn {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
}

.contact {
  padding: 5rem 0;
  background-color: #FFF8F3;
}
.contact__content {
  display: flex;
  justify-content: space-around;
  gap: 2.5rem;
}
.contact__left {
  width: 50%;
}
.contact__right {
  width: 50%;
}
.contact__right .section__title {
  margin-bottom: 2rem;
}
.contact__img {
  margin-right: 2rem;
  transition: all 0.3s linear;
}
.contact__img:hover {
  transform: rotate(360deg);
}
.contact__input {
  width: 100%;
  padding: 1rem;
  border: 1px solid #FD6E0A;
  border-radius: 5px;
  background-color: #ffffff;
  margin-bottom: 1rem;
}

.footer {
  padding: 2rem 0;
  background-color: #FD6E0A;
}
.footer__description {
  font-weight: 500;
  color: #ffffff;
  text-align: center;
}
.footer__link {
  color: #ffffff;
  transition: all 0.3s linear;
}
.footer__link:hover {
  color: blue;
  text-decoration: underline;
}

/*# sourceMappingURL=style.css.map */
