@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");

:root {
  --color-green: #50fa7b;
  --color-violet: #6753a8;
}

* {
  margin: 0;
  border: 0;
  padding: 0;
}

body {
  background: black;
  font-family: "Roboto", sans-serif;
}

header {
  padding: 30px;
  text-align: center;
  margin: 30px;
  background: rgb(19, 18, 18);
}

.links a {
  margin: 0 16px;
  color: var(--color-green);
  font-size: 28px;
  line-height: 38px;
  text-decoration: none;
}

.links a:hover {
  color: var(--color-violet);
  transition: 600ms;
}

.menu_portfolio {
  font-size: 12px;
  color: var(--color-green);
  text-align: center;
}

.menu_portfolio_projects h2 {
  margin-top: 20px;
}
.menu_portfolio_projects a {
  line-height: 30px;
  text-decoration: none;
  font-size: 16px;
}

.gallery {
  width: 80%;
  height: 250px;
  margin: 25px auto;
  display: flex;
  overflow-x: scroll;
}

.gallery img {
  width: 300px;
  height: 233px;
  margin: 0px 1px;
}

.gallery img:hover {
  opacity: 0.5;
  z-index: 1;
  transition: 0.5s;
  background-color: #000011;
}

#img_avatar {
  text-align: center;
}

#img_avatar img {
  border-radius: 50%;
  width: 200px;
  border: 5px solid var(--color-green);
}

.info {
  color: white;
}

.info_container {
  text-align: center;
  font-size: 20px;
  margin-top: 15px;
}

.info_container_show p {
  margin-bottom: 10px;
}

.info_container_ulist {
  text-align: center;
}

.info_container_ulist li {
  margin-bottom: 10px;
  list-style-type: none;
}

.show {
  text-align: center;
  color: var(--color-green);
}

.show_container {
  margin-top: 10px;
  margin-bottom: 10px;
}

.show_titulo {
  color: var(--color-green);
  border-bottom: 1px solid var(--color-green);
}

.img_show {
  text-align: center;
}

.img_show img {
  width: 100%;
  height: 100%;
}
#link-footer {
  text-align: center;
}

#link-footer a {
  line-height: 100px;
  font-size: 20px;
  border-bottom: 1px solid var(--color-green);
}
