@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Open Sans", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100vh;
  background-color: #f5f5f5;
}

a:not(.project-link) {
  color: black;
  text-decoration: none;
}

a.project-link {
  text-decoration: none;
}

a.project-link:hover {
  text-decoration: underline;
}

.banner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
  width: 100%;
  height: auto;
  padding-top: 50px;
  background-color: #e8e8e8;
}

.profile-picture {
  display: grid;
  width: auto;
  justify-content: center;
}

.profile-picture img {
  border-radius: 25%;
}

.profile-info {
  width: 350px;
}

.profile-info h1 {
  margin-bottom: 20px;
}

.profile-info h4 {
  margin-bottom: 10px;
}

.profile-info img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.profile-info i {
  width: 50px;
  height: 50px;
}

@media (max-width: 600px) {
  .banner {
    grid-template-columns: 1fr;
    justify-content: center;
    text-align: center;
  }

  .profile-info {
    width: auto;
  }
}

.content {
  width: 1080px;
}

.content h2 {
  margin-top: 25px;
}

.projects h3 {
  margin-top: 25px;
  margin-bottom: 10px;
  margin-left: 25px;
}

.project {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 20px;
  margin-left: 25px;
}

@media (max-width: 1080px) {
  .content {
    width: auto;
  }

  .project {
    grid-template-columns: 1fr;
  }
}

.technology-list {
  margin-left: 50px;
}

.screenshot img {
  border: 1px solid black;
}

.screenshot img.architecture {
  height: 150px;
  width: 300px;
  margin-top: 10px;
}

.screenshot img.gif {
  height: 150px;
  width: 300px;
}

.screenshot img.static {
  position: absolute;
  height: 150px;
  width: 300px;
  opacity: 1;
}

.screenshot img.static:hover {
  position: absolute;
  height: 150px;
  width: 300px;
  opacity: 0;
}

.job-item {
  margin-top: 25px;
  margin-left: 25px;
}

.job-duties {
  margin-left: 25px;
  margin-bottom: 25px;
  margin-right: 50px;
}

.job-list {
  margin-left: 25px;
}

.tech-line {
  margin-top: 5px;
  margin-bottom: 25px;
}

.job-duty-break {
  width: 300px;
}

.award-list {
  margin-top: 10px;
  margin-left: 25px;
  width: 700px;
}

.award-item {
  display: flex;
  justify-content: space-between;
}

.edu-list {
  margin-top: 10px;
  margin-left: 25px;
  margin-bottom: 50px;
  width: 700px;
}

@media (max-width: 700px) {
  .award-list {
    width: auto;
  }

  .edu-list {
    width: auto;
  }
}

.edu-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}

footer {
  font-family: "Open Sans", sans-serif;
  display: flex;
  background-color: #e8e8e8;
  width: 100%;
}

.counter {
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 50px;
  font-size: 10px;
}

#counter {
  font-weight: bold;
}
