@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;1,200;1,300;1,400;1,500;1,600&family=League+Spartan:wght@500&display=swap');

body {
  font-family: 'Fira Sans', sans-serif;
}

section {
  border-radius: 10px;
  background-color: #d0dcea;
  padding: 4px 4px 4px 20px;
  margin: 10px 4px 4px 10px;
}

h2 {
  color: rgb(65, 63, 92);
}
h3 {
  color: rgb(88, 86, 114);
}

a {
  text-decoration: none;
  color: rgb(50, 50, 137);
}

a:hover {
  color: rgb(127, 127, 200);
}

li {
  list-style: none;
  background-color: #c3cdda;
  padding: 3px;
  margin: 2px;
  margin-bottom: 7px;
  margin-right: 30px;
  border-radius: 7px;
  width: -moz-fit-content;
  width: fit-content;
}

.pdf-link {
  margin-top: 20px;
  margin-bottom: 20px;

  width: -moz-fit-content;
  width: fit-content;
}

.pdf-link a {
  background-color: #c3cdda;
  border-radius: 5px;
  padding: 10px;
}

/* Horizontal for Contacts/Links */
@media only screen and (min-width: 460px) {
  .hero p {
    display: inline-flex;
    margin-right: 1.5rem;
  }
}

/* Grid for skills list */
@media only screen and (min-width: 786px) {
  .skills ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (min-width: 1200px) {
  .skills ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media only screen and (min-width: 1600px) {
  .skills ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}