* {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

:root {
  --fxs: 10px;
  --fs: 12px;
  --fm: 16px;
  --fl: 20px;
  --fxl: 28px;
  --leather-color-light: #000;
  --leather-color-dark: #e7e7e7;
  --shadow-box: 5px 5px 1px 1px #000a;
  --shadow-text: 2px 0 #000b;
  --theme-light-bg: #f3f3f3;
  --theme-light-primary-color: #61aaee;
  --theme-light-segundary-color: #6589f7;
  --theme-dark-bg: #0a0a0a;
  --theme-dark-primary-color: #b061f0;
  --theme-dark-segundary-color: #9165f8;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--theme-dark-bg);
  background-image: url(https://res.cloudinary.com/dm2qtlnit/image/upload/v1668618025/favicon_cq6yr2.png);
  background-position: 0 0;
  background-size: 150px;
  background-blend-mode: overlay;
  color: var(--leather-color-dark);
}

a {
  color: var(--leather-color-dark);
  text-decoration: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

#container {
  display: flex;
  flex-direction: column;
  width: 90%;
  margin: auto;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.img-container {
  display: flex;
  width: 100%;
  height: 350px;
}

.img-header {
  width: 100%;
  height: 100%;
  border-end-start-radius: var(--fxs);
  border-end-end-radius: var(--fxs);
  box-shadow: var(--shadow-box);
  filter: contrast(2) opacity(.65);
}

.nav-var {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: static;
  width: 100%;
  border-radius: var(--fxs);
  background-color: var(--theme-dark-primary-color);
  border-bottom: 7px solid var(--theme-dark-segundary-color);
  border-right: 7px solid var(--theme-dark-segundary-color);
  box-shadow: var(--shadow-box);
}

.nav-img-container {
  display: flex;
  justify-content: center;
  width: 200px;
  height: 60px;
  padding: 0 10px;
}

.nav-img {
  display: flex;
  user-select: none;
  width: 100%;
  object-fit: contain;
}

.nav-btn {
  display: none;
}

.nav-list {
  list-style: none;
  padding: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.nav-item {
  display: flex;
  width: 100%;
  justify-content: center;
  font-size: var(--fl);
  user-select: none;
  text-shadow: var(--shadow-text);
}

.nav-item:hover {
  filter: brightness(.15);
  cursor: pointer;
}

.box-content {
  display: flex;
  flex-direction: column;
}

.box-title {
  font-size: calc(var(--fl) * 1.5);
  color: var(--theme-dark-segundary-color);
  text-shadow: 1px 1px 1px var(--leather-color-dark);
  margin-bottom: 0;
}

.box-text-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
}

.text-content {
  grid-column: 2/3;
  grid-row: 1/2;
  width: 90%;
  margin: 10px auto;
  padding: 10px;
  background-color: var(--theme-dark-primary-color);
  box-shadow: var(--shadow-box);
  border-bottom: 7px solid var(--theme-dark-segundary-color);
  border-right: 7px solid var(--theme-dark-segundary-color);
  border-radius: var(--fxs);
}

.box-text {
  text-shadow: var(--shadow-text);
  padding: 0 20px;
  text-align: start;
}

.text-content h3 {
  font-size: var(--fl);
  font-weight: 600;
  text-shadow: var(--shadow-text);
}

.text-content:nth-child(2) {
  grid-column: 1/2;
  grid-row: 2/3;
  background-color: var(--theme-dark-segundary-color);
  border-bottom: 7px solid var(--theme-dark-primary-color);
  border-right: 7px solid var(--theme-dark-primary-color);
}

.list-title {
  align-self: center;
  font-size: var(--fl);
  font-weight: 600;
  text-shadow: var(--shadow-text);
}

.list-content {
  display: flex;
  flex-direction: column;
  text-align: initial;
  list-style: none;
  margin-left: -10px;
}

.item-list-content {
  font-size: var(--fm);
  text-shadow: var(--shadow-text);
  padding: 5px 0;
}

.list-data {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.list-games {
  list-style: none;
  margin-left: -40px;
}

.list-games li {
  margin: 20px 0;
}

.img-games {
  width: 50%;
  height: 200px;
  border-radius: var(--fxs);
}

.game {
  width: 65%;
}

.foot-container {
  display: grid;
  grid-template-columns: repeat(4, 25%);
  grid-template-rows: auto;
  background-color: var(--theme-dark-segundary-color);
}

.foot-title {
  grid-column: 1/span 4;
  text-align: center;

}

.departament {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: flex-start;
}

.employed {
  display: grid;
  grid-template-rows: 80% 20%;
  width: 100%;
  height: 100px;
  margin-bottom: var(--fxs);
  place-content: center;
}

.employed-img {
  display: flex;
  justify-self: center;
  height: 100%;
  width: 100px;
  border: 1px solid #f3f3f3;
  border-radius: 50%;
  overflow: hidden;
  object-fit: cover;
}

.employed-name {
  width: 100%;
  font-size: var(--fm);
  text-shadow: var(--shadow-text);
  text-align: center;
}