@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Pixelify+Sans:wght@400..700&display=swap");
body {
  font-family: sans-serif;
  background-color: #b9c495;
}
body ::selection {
  background-color: black;
  color: white;
}

main {
  display: grid;
  grid-template-rows: auto;
  #grid-template-columns: 1fr 1fr;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.header {
  grid-column: 1/-1;
  grid-row: 1;
}

.profile {
  grid-column: 1/-1;
  grid-row: 2;
}

.projects {
  grid-column: 1/-1;
  grid-row: 3;
}

.languages {
  grid-column: 1;
  grid-row: 4;
}

.frameworks {
  grid-column: 2;
  grid-row: 4;
}

.contact {
  grid-column: 1;
  grid-row: 5;
}
.contact .contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
}
.contact .contact-info > span {
  padding: 5px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  overflow: auto;
}
.contact .contact-info > span img {
  flex: 0 0 auto;
}
.contact .contact-info > span a {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}

.links {
  grid-column: 2;
  grid-row: 5;
}
.links .links-info {
  display: flex;
  flex-direction: column;
}
.links .links-info > div {
  padding: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.links .links-info > div img {
  flex: 0 0 auto;
}
.links .links-info > div a {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}

@media (min-width: 768px) {
  main {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .header {
    grid-column: 1/-1;
    grid-row: 1;
  }
  .profile {
    grid-column: 1/-1;
    grid-row: 2;
  }
  .projects {
    grid-column: 1/-1;
    grid-row: 3;
  }
  .languages {
    grid-column: 1/-1;
    grid-row: 4;
  }
  .frameworks {
    grid-column: 2;
    grid-row: 4;
  }
  .links {
    grid-column: 3;
    grid-row: 4;
  }
  .contact {
    grid-column: 1/-1;
    grid-row: 5;
  }
}
h1 {
  font-family: "Pixelify Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 40px;
}
@media (min-width: 768px) {
  h1 {
    font-size: 80px;
  }
}
@media (min-width: 1024px) {
  h1 {
    font-size: 100px;
  }
}

a {
  color: black;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

hr {
  margin: 0;
  padding: 0;
  border: none;
  border-top: 4px dotted #ccc;
  padding-bottom: 20px;
}

td {
  padding-right: 15px;
}

img {
  filter: grayscale(100%);
}

h2 {
  margin: 0;
  padding: 0;
  background-color: #fcfcfc;
  display: inline;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}
h2::before {
  content: "★ ";
}

h3 {
  margin: 0;
  padding: 0;
}

main {
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  max-width: 90%;
}
@media (min-width: 1024px) {
  main {
    max-width: 900px;
  }
}
main {
  background-color: white;
}
main section {
  padding: 10px;
}
@media (min-width: 1024px) {
  main section {
    padding: 20px;
  }
}

.header {
  display: flex;
  justify-content: center;
  align-items: center;
}

.projects ul {
  list-style: none;
  padding-left: 0;
}
.projects ul p {
  padding-left: 10px;
}
.projects img {
  width: 24px;
  height: 24px;
}
.projects .project-title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.contact img,
.links img,
.languages img,
.frameworks img {
  width: 16px;
  height: 16px;
}

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