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

:root {
  --fc:#212529;
  --bg:#fff;
}

:root:has(input[type=checkbox]:checked) {
  --bg:#212529;
  --fc:#fff;
}

html {
  font-family: "Roboto", sans-serif;
  scroll-behavior: smooth;
  scroll-padding-top: var(--scroll-padding, 70px);
}

body {
  background-color: var(--bg);
  color: var(--fc);
}

body:has(input[type=checkbox]:checked) {
  background-color: #212529;
  color: #fff;
}

header {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: center;
}

h2 {
  font-size: 40px;
}

main {
  width: min(80%, 1000px);
  margin-inline: auto;
}

section {
  margin-bottom: 200px;
}

footer {
  text-align: center;
}

.main-container {
  margin-top: 200px;
}
@media (max-width: 500px) {
  .main-container {
    margin-top: 150px;
  }
}

#menuBtn {
  display: none;
  cursor: pointer;
}
@media (max-width: 550px) {
  #menuBtn {
    display: block;
  }
}

.nav {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 20px;
}
@media (max-width: 550px) {
  .nav {
    justify-content: space-between;
    flex-direction: column-reverse;
  }
}
.nav__list {
  min-width: 380px;
  display: flex;
  justify-content: space-around;
  list-style: none;
  margin-right: auto;
}
@media (max-width: 550px) {
  .nav__list {
    min-width: 200px;
    flex-direction: column;
    align-items: flex-start;
    display: none;
    margin-top: 10px;
  }
}
.nav__list--item a {
  color: inherit;
  font-weight: 600;
  text-decoration: none;
}

.nav-active {
  background-color: var(--bg);
  box-shadow: 5px -1px 12px -5px grey;
}

.nav-flex {
  display: flex !important;
}

.nav-mobile-container {
  display: flex;
  justify-content: space-between;
}

.home {
  display: flex;
  justify-content: center;
}
.home__title {
  font-size: 100px;
}
@media (max-width: 800px) {
  .home__title {
    font-size: 80px;
  }
}
.home__content {
  font-size: 25px;
  line-height: 1.4;
  margin-bottom: 10px;
}
@media (max-width: 800px) {
  .home__content {
    font-size: 20px;
  }
}

.skills {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.skills__title {
  text-align: center;
  margin-bottom: 50px;
}
.skills__container {
  margin: 0 150px;
  display: flex;
  justify-content: space-evenly;
}
.skills img {
  object-fit: contain;
  width: 80px;
}
@media (max-width: 800px) {
  .skills__container {
    margin: 0 50px;
    flex-wrap: wrap;
  }
  .skills__container img {
    object-fit: contain;
    width: 80px;
  }
  .skills__container > * {
    margin-bottom: 15px;
    margin-left: 5px;
    margin-right: 5px;
  }
}

.contact__container {
  font-size: 40px;
  line-height: 1.4;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.contact__container-link {
  color: inherit;
}
.contact__title {
  text-align: center;
}

.about__container {
  font-size: 20px;
  line-height: 1.4;
}
.about__title {
  text-align: center;
}
.about__content {
  text-align: justify;
}

.footer {
  position: absolute;
  width: 100%;
  bottom: auto;
  margin-left: auto;
  padding-bottom: 5px;
}
.footer p {
  margin-bottom: 10px;
}/*# sourceMappingURL=main.css.map */