body {
  background-color: #000000;
  color: #00FF00;
  font-family: monospace;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  margin: 0;
  margin-top: 2.5vh;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.container {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 800px;
  margin-bottom: 1vh;
}

.info {
  float: left;
  text-align: left;
  width: calc(800px - 250px);
}

.logo {
  height: 250px;
  width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo img {
  max-width: 100%;
  max-height: 100%;
}

.name {
  font-size: 36px;
  margin: 0;
  position: relative;
  color: #00FF00;
}

.name::after {
  content: "|";
  display: inline-block;
  opacity: 1;
  animation: blink 1s infinite;
}

@keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.links {
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.links a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  transition: color 0.3s ease-in-out;
  position: relative;
  padding: 0 15px;
}

.links a:hover {
  color: grey;
}

.links a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 100%;
  width: 2px;
  background-color: #00FF00;
}

.links a:first-child::before {
  display: none;
}

.projects-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1vh;
}

.container-header {
  color: #FFF;
  font-size: 1.2em;
}

.publication {
  width: 800px;
  max-height: 150px;
  padding: 0;
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  align-items: left;
}

.publication-header {
  margin: 0;
  display: flex;
  justify-content: space-between;
  line-height: normal;
}

.publication-text {
  text-align: left;
}

.project {
  width: 800px;
  height: 150px;
  padding: 0;
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  align-items: left;
}

.project img {
  width: 150px;
  height: 100%;
  position: left;
}

.project-text {
  width: calc(100% - 150px);
  text-align: left;
  margin-left: 10px;
}

.project-header {
  margin: 0;
  display: flex;
  justify-content: space-between;
  line-height: normal;
}

.project-name {
  font-size: 1vw;
}

.project-tech {
  float: right;
  font-size: 1em;
  color: whitesmoke;
  font-style: italic;
}

.project-desc {
  font-size: 1em;
  color: white;
  float: left;
  width: 70%;
  max-width: 100%;
}

.project-links {
  margin-top: 10px;
  float: right;
  text-align: right;
  color: #F0F0F0;
  font-size: 1em;
}

.project-links a {
  color: grey;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
  position: relative;
}

.project-links a:hover {
  color: white;
}

.project-links a::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 100%;
  width: 2px;
  background-color: #00FF00;
}

.project-links a:first-child::before {
  display: none;
}
