@font-face {
  font-display: swap;
  font-family: "Voces";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/voces-v20-latin-regular.woff2") format("woff2"),
    url("../fonts/voces-v20-latin-regular.woff") format("woff");
}

body {
  font-size: 1.2rem;
  margin: 0;
  text-align: center;
  font-family: "Voces", sans-serif;
}

a {
  color: #000;
  text-decoration: none;
}

.top {
  display: flex;
  justify-content: space-between;
  padding: 5%;
}

.title {
  margin: 0;
  font-size: 1.5rem;
}

.theme-mobile {
  margin: 0;
}

.theme-desktop {
  display: none;
}

.icon {
  background-color: #fff;
  border: none;
  padding: 0;
}

.hamburger {
  background-color: #fff;
  color: #000;
}

#nav {
  display: none;
}

.nav {
  display: flex;
  flex-direction: column;
  padding: 0;
}

ul {
  list-style-type: none;
}

.nav-link {
  margin-bottom: 1em;
}

#about {
  text-align: left;
  height: 67vh;
}

.text {
  margin: 50% 5%;
  text-align: center;
}

.about-text {
  line-height: 1.6;
}

.profile-picture {
  display: none;
}

#experience {
  padding: 7% 0;
}

.experience {
  margin: 3em 1.5em;
  text-align: left;
}

#experience-heading {
  margin: 0;
}

.experience p {
  margin: 0.5em;
}

#skills {
  margin: 5%;
}

.skills-container {
  display: grid;
  grid-template-columns: repeat(3, auto);
}

.footer {
  padding: 2em;
}

.copyright {
  margin-bottom: 5%;
}

.social-links {
  display: flex;
  justify-content: space-around;
}

@media screen and (min-width: 800px) {
  body {
    font-size: 1.5rem;
  }

  #about {
    height: 55vh;
  }

  #experience {
    height: 100%;
    padding: 1% 0;
  }

  .experience-top {
    display: flex;
    justify-content: space-between;
  }
}

.disabled {
  cursor: not-allowed;
  text-decoration: line-through;
  background-color: #808080;
}

@media screen and (min-width: 1000px) {
  body {
    font-size: 1.7rem;
  }

  .header {
    display: flex;
    justify-content: space-around;
    margin: 0 10%;
  }

  .top {
    padding: 2% 0;
  }

  .theme-mobile {
    display: none;
  }

  .theme-desktop {
    display: block;
  }

  #dark {
    display: none;
  }

  .icon {
    display: none;
  }

  #nav {
    display: block;
    width: 50%;
  }

  .nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0;
    padding: 1em;
  }

  .nav-link {
    margin-bottom: 0;
  }

  #about {
    height: 47vh;
  }

  .profile-picture {
    display: block;
  }

  .text {
    margin: 20% 0;
  }

  #experience,
  #skills,
  #contact {
    padding: 1% 25%;
  }

  .experience-container {
    margin-top: 5%;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 3000px) {
  body {
    font-size: 4rem;
  }

  .title {
    font-size: inherit;
  }

  .nav {
    padding: 0.8em;
  }
}
