body {
  background: radial-gradient(circle at top left, #001100, #000);
  color: #00ff66;
  line-height: 1.6;
}

.advice {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;

  padding: 20px;
  border: 3px solid #54c200;
  background: #fffbe6;

  width: fit-content;
  margin: 40px auto;

  text-align: center;
}

/* Ajuste das imagens */
.advice img {
  width: 110px; /* ou o valor que quiser */
  image-rendering: pixelated; /* fica perfeito com GIFs antigos */
}

/* Estética dos títulos */
.advice h1 {
  margin: 0;
  padding: 0;
  font-size: 36px;
  letter-spacing: 2px;
  color: #20d400;
  text-shadow: 2px 2px 0px #ffcc00;
}

.advice h2 {
  margin: 0;
  padding: 0;
  font-size: 28px;
  color: #20d400;
  text-shadow: 2px 2px 0px #ffcc00;
  letter-spacing: 2px;
}

.bottom {
  text-align: center;
  padding-top: 0;
  padding-bottom: 40px;

}

header {
  display: flex;
  align-items: center;
}

hr {
  border: 1px solid green;
}

nav a {
  color: green;
  margin: 10px;
  margin-left: 20px;
}

nav .active {
  color: black;
  background-color: green;
}

.whoiam,
.contacts {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-left: 5%;
  margin-right: 5%;
}

.button-group img {
  height: 30px;
  object-fit: contain;
  margin-bottom: 5px;
}

.buttons img.github {
  width: 85px;
  height: auto;
}

.cool {
  margin-top: 10%;
  display: flex;
  justify-content: center;
  gap: 5px;
}

.post {
  margin: 5%;
  padding: 2%;
  border: 2px solid green;
  max-height: 400px;
  overflow-y: auto;
}

.main-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin: 5%;
}

.part1,
.part2 {
  flex: 1;
}

.part1 {
  margin-right: 10px;
}

.part2 {
  margin-left: 10px;
  padding-left: 2%;
  border-left: 1px solid green;
}

marquee {
  margin-top: 2%;
  margin-bottom: 2%;
  border-top: 1px solid green;
  border-bottom: 1px solid green;
}

.ukszweb {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 5%;
}

.changelog {
  border: 2px solid green;
  padding: 2%;
  margin-top: 2%;
  margin-bottom: 2%;
  max-height: 200px;
  overflow-y: auto;
}

.buttons {
  border: 2px solid green;
  padding: 2%;
  margin-top: 2%;
  margin-bottom: 2%;
  max-height: 200px;
  overflow-y: auto;
}

.change {
  border: 1px solid green;
  padding: 1%;
}

.donut {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

#donutCanvas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  border-top: 2px solid green;
  border-bottom: 2px solid green;
  padding: 10px 0;
  box-sizing: border-box;
}

.track {
  display: inline-flex;
  gap: 10px;
  animation: scroll 20s linear infinite;
}

.track img {
  height: 64px;
  flex-shrink: 0;
}

.marquee:hover .track {
  animation-play-state: paused;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


.blog-link {
  text-decoration: none;
  color: #00ff66;
}

.release {
  display: flex;
  gap: 15px;
}

.code {
  background-color: #1c1c1c;
}