html {
  font-size: 100%;
  height: 100%;
  box-sizing: border-box;
  min-width: 300px;
  overflow-y: scroll;
  scroll-behavior: smooth; }

*,
*::before,
*::after {
  box-sizing: inherit; }

body {
  position: relative;
  font-family: "Public Sans", sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.3;
  height: auto;
  font-family: sans-serif;
  display: flex;
  flex-direction: column; }

section {
  padding: 1rem 10vw;
  width: 100%; }

a,
a:visited,
a:hover {
  text-decoration: none;
  text-transform: capitalize;
  color: black; }

.flex {
  display: flex; }
  .flex-dr {
    flex-direction: column; }
  .flex-jc-sb {
    justify-content: space-between; }
  .flex-jc-c {
    justify-content: center; }
  .flex-ai-c {
    align-items: center; }

.menu {
  margin-top: 2.5rem;
  width: 50%;
  height: 100vh;
  position: fixed;
  background: black;
  padding: 0;
  opacity: 0.8;
  z-index: 3; }
  .menu nav {
    padding-top: 4rem; }
    .menu nav a {
      margin: 2rem 0;
      color: white;
      font-size: 1rem; }

.show_menu {
  visibility: visible; }

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 2.5rem;
  background-color: lightblue;
  opacity: 0.5; }
  .header nav {
    height: 2.5rem;
    color: black; }
  .header__logo img {
    padding: 0.4rem;
    padding-top: 0.5rem;
    height: 2.5rem; }
  .header__menu span {
    display: block;
    background-color: black;
    width: 2rem;
    height: 0.15rem; }
    .header__menu span:not(:last-child) {
      margin-bottom: 0.2rem; }
  .header__link a {
    font-size: 1.125rem;
    color: white; }
    .header__link a:not(:last-child) {
      margin-right: 1rem; }

.intro {
  height: auto;
  width: 100%;
  margin-top: 2.5rem;
  border: 1px solid black;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center; }
  .intro__container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative; }
    .intro__container .intro__img {
      width: 13rem;
      height: 13rem;
      border-radius: 50%;
      overflow: hidden;
      z-index: 2; }
      .intro__container .intro__img img {
        width: 100%;
        height: 100%;
        object-fit: fill; }
  .intro__word {
    width: 100%;
    text-align: left; }

.project {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, 60vh);
  grid-row-gap: 5rem; }
  .project .wrapper {
    display: grid;
    grid-template-columns: 2fr 3fr;
    border: 1px solid black;
    height: auto; }
    .project .wrapper__container {
      height: 100%;
      width: 100%;
      background-image: url(/logo.jpg);
      background-repeat: no-repeat;
      background-size: 100% 100%;
      max-height: 29rem; }
    .project .wrapper__word {
      width: 100%;
      height: 100%;
      padding: 2rem 3rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      max-height: 28.5rem; }
      .project .wrapper__word .word_icon {
        padding-top: 3rem;
        cursor: pointer; }
        .project .wrapper__word .word_icon a {
          cursor: pointer; }

.skill {
  border: 1px solid black;
  height: auto;
  margin: 3rem 0;
  min-height: auto;
  border-radius: 5px; }
  .skill h2 {
    text-align: center; }
  .skill .container {
    display: flex;
    justify-content: space-between; }
    .skill .container .skill__wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      min-width: 10rem;
      height: 100%; }
    .skill .container ul {
      list-style-type: none;
      padding-left: 0; }

.education {
  border-radius: 5px;
  border: 1px solid black;
  height: auto; }

.footer {
  background-color: lightyellow;
  margin-top: auto;
  padding: 2rem;
  text-align: center; }

@media (max-width: 63.9999em) {
  .desktop h2 {
    font-size: 1.375rem; }
  .desktop h3 {
    font-size: 1.125rem; }
  .desktop p {
    font-size: 0.875rem; } }

@media (max-width: 39.999em) {
  .tablet .intro__img:hover ~ .image__message {
    opacity: 0; }
  .tablet .skill .container {
    flex-direction: column;
    text-align: center; }
  .tablet .project {
    grid-template-rows: repeat(2, 90vh); }
    .tablet .project .wrapper {
      grid-template-columns: 1fr;
      grid-template-rows: 2fr 3fr; }
      .tablet .project .wrapper__container {
        max-height: 100%; }
  .tablet h2 {
    font-size: 1.25rem; }
  .tablet h3 {
    font-size: 1rem; }
  .tablet p {
    font-size: 0.75rem; } }

@media (max-width: 39.999em) {
  .hide-for-mobile {
    display: none; } }

@media (min-width: 40em) {
  .hide-for-desktop {
    display: none; } }

.intro__img:hover {
  box-shadow: 1px 2px 3px 0px #000000;
  transition: box-shadow 300ms ease-in-out; }
