@import url('https://fonts.googleapis.com/css2?family=Azeret+Mono&display=swap');

* {
  border: 0;
  margin: 0;
  padding: 0;
}

html {
  background-color: #161616;
  margin: auto;
  max-width: 1024px;
}

nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  left: 0;
  margin: auto;
  max-width: 1004px;
  padding: 10px;
  position: fixed;
  right: 0;
  top: 0;
  background: rgba(22, 22, 22, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

h1 {
  color: #f4f4f4;
  font-family: 'Azeret Mono', monospace;
  font-size: 25px;
  font-weight: 400;
  line-height: 0.8;
}

.img {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 20px;
}

img {
  width: 100%;
  max-width: 600px;
  height: auto;
  vertical-align: bottom;
}

.scroll-container {
  -ms-overflow-style: none;
  overflow-x: auto;
  scrollbar-width: none;
}

.scroll-container::-webkit-scrollbar {
  display: none;
}

.lista {
  display: flex;
  gap: 10px;
  list-style: none;
  white-space: nowrap;
}

.item {
  color: #f4f4f4;
  font-family: 'Azeret Mono', monospace;
  font-size: min(max(15px), 4.149vw);
  font-weight: 400;
  text-decoration: none;
  line-height: 0.8;
}

main {
  margin-top: 80px;
}

.titulo {
  color: #f4f4f4;
  font-family: 'Azeret Mono', monospace;
  font-size: 10px;
  font-weight: 400;
  line-height: 0.8;
  margin-bottom: 20px;
}

#about {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: auto;
}

#services {
  height: 500px;
  width: auto;
}

#contact {
  height: 500px;
  width: auto;
}

@media screen and (max-width: 502px) {
  main {
    margin-top: 108px;
  }
}