@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Code:ital,wght@0,300..800;1,300..800&display=swap');

:root {
  background-color: #282828;
}



body {
  font-family: "Google Sans Code", monospace;
  font-optical-sizing: auto;
  font-style: normal;
  background-color: #282828;
  color: #83a598;
  font-size: 18px;
  margin: 150px;
  text-decoration: none;
}

a {
  text-decoration: none;
  color: #8ec07c;
}


h1,
h2,
h3 {
  color: #fb4934;
  size: 30px;
}

.intro {
  font-style: bold;
}

.intro-img {
  align-self: center
}

.intro-img img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
}

.intro-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
}

.projects {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.project-card {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  border-bottom: 1px solid #4c566a;
  padding-bottom: 40px;
}

iframe {
    border-radius: 12px;
    border: 2px solid #3c3836;
    pointer-events: none;
    user-select: none;
}

.project-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
}

.skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skills span {
  border: 1px solid #ebdbb2;
  color: #fbf1c7;
  padding: 4px 12px;
  font-size: 14px;
  background: none;
  border-radius: 0;
}

/* responsiveness shit */
@media (max-width: 768px) {
  body {
    margin: 20px;
  }

  .intro-container {
    flex-direction: column;
  }

  .intro-img img {
    width: 200px;
  }

  .project-card {
    flex-direction: column;

    iframe {
      width: 100%;
      height: 200px;
    }
  }
}
