<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.triangle {
  margin: 0 auto;
  height: 256px;
  width: 256px;
}

.tri &gt; * {
  fill: #1C1C1C;
  stroke: white;
  stroke-width: 1px;
}

.newemka {
  height: 30px;
  width: 150px;
  position: fixed;
  z-index: 1000;
  left: 20px;
  top: 20px;
}

/* do not look here */
.ctc {
  margin: 0 auto;
  height: 90px;
  width: 320px;
}

#stg path {
  fill: #060537;
}

#btnMain {
  width: 200px;
  height: 70px;
  margin: 0 auto;
  perspective: 800px;
  opacity: 0.7;
  cursor: pointer;
}

#btnBox {
  width: 100%;
  height: 100%;
  display: block;
  background-color: #3f0063;
  font-size: 32px;
  color: white;
  text-align: center;
  line-height: 70px;
  text-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 15px 30px rgba(59, 2, 97, 0.4);
  transition: all 0.5s;
}

#btnBottom {
  width: 100%;
  height: 30px;
  background-color: #3b0261;
  position: absolute;
  top: 79%;
  left: 0;
  transform: rotateX(-87deg);
  transition: all 0.5s;
}

#btnMain:hover #btnBox {
  background-color: #4a0472;
  transform: rotateX(25deg);
  text-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 25px 30px rgba(59, 2, 97, 0.4);
}

#btnMain:hover #btnBottom {
  transform: rotateX(-70deg);
}</pre></body></html>