body {
  background: linear-gradient(180deg,rgba(0, 0, 0, 1) 0%, rgb(0, 15, 0) 100%);
  color: white;
  font-family: Unbounded, sans-serif;
  margin: 0;
  padding: 0;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  gap: 40px;
  padding: 20px;
}

.text-block {
  display: flex;
  flex-direction: column;
  max-width: 500px;
}

.hello {
  background: linear-gradient(to right, #165434 0%, #78ff00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: bold;
  font-size: 200%;
  margin: 0 0 20px 0;
}

.hello:hover {
  content: "SuperCHIROK1";
}

.about {
  color: #d1d1d1;
  line-height: 1.5;
}

.about:hover {
  color: white;
}

.ava {
  width: 300px;
  max-width: 40%;
  border-radius: 20px;
}

.ava:hover {
  transform: rotateZ(10deg);
}

.buttons-cont {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 15%;
}

button, .butn {
  border-radius: 10px;
  padding: 6px 14px;     /* было 8px 16px → уменьшил */
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 14px;       /* можно чуть меньше */
  line-height: 1.2;      /* добавляем явное значение */
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

button {
  background: #78ff00;
  color: #387800;
}
button:hover {
  background: #357500;
  color: #78ff00;
}

.butn {
  background: #ffbf00;
  color: #a47c00;
}
.butn:hover {
  background: #a47c00;
  color: #ffbf00;
}
