body {
  background-color: #032003;
  margin: 0px;
  padding: 0px;
  font-family: "Roboto Mono", monospace;
  font-optical-sizing: auto;
  font-size: 16px;
}
#top-bar {
  background-color: rgb(0,100,50);
  color: #fff;
  padding: 0px;
  border: 0px;
  margin: 0px;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}

#top-bar>div {
  margin: 0.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
#top-bar>div>img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
#top-bar nav {
  margin: 0.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
#top-bar nav a {
  color: #fff;
  margin: 0.5em;
  text-decoration: none;
}
#top-bar nav a:hover {
  color: #d0d0d0;
}

#content {
  background-color: #032003;
  color: #ddd;
  padding: 1em;
  margin: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.projects {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(40vw, 1fr));
  grid-gap: 4em;
  min-width: 50vw;
}

.project-card {
  background-color: #333;
  color: #ddd;
  padding: 1em;
  margin: 0px;
  display: flex;
  justify-content: top;
  align-items: center;
  flex-direction: column;
  border-radius: 0.5em;
  box-shadow: 0px 0px 1em 0.5em #031003;
}

.project-card p {
  margin: 0.5em;
  text-align: justify;
  text-justify: inter-word;
}

.project-card h2 {
  margin: 0.5em;
}

.shref {
  color: #fff;
  text-decoration: none;
}
.shref:hover {
  color: #ddd;
}
.shref:visited {
  color: rgb(0,200,100);
}

.blinker {
  animation: blink-animation 1s steps(2, start) infinite;
  -webkit-animation: blink-animation 1s steps(2, start) infinite;
  margin: 0px;
}
.blinker-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.card {
  background-color: #333;
  color: #ddd;
  padding: 1em;
  margin: 0px;
  display: flex;
  justify-content: top;
  align-items: center;
  flex-direction: column;
  border-radius: 0.5em;
  box-shadow: 0px 0px 1em 0.5em #031003;
  width: 50%;
}
.card-top {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 2em;
}
.card-top img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0.5em;
  object-fit: cover;
  object-position: center;
}
.card-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 1em;
}
.links>a>img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: scale-down;
  object-position: center;
}

.contact {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 1em;
}
.contact>a {
  color: #fff;
  text-decoration: none;
}
.contact>a:hover {
  color: #ddd;
}
.contact>a:visited {
  color: rgb(0,200,100);
}

@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}

@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
}