* {
  box-sizing: border-box;
}

body {
  height: 100vh;
  width: 100vw;
  border: 20px solid #FFD600;
  overflow: hidden;
  margin: 0;
  font-family: "Karla", sans-serif;
  font-size: 30px;
}

main {
  width: 100%;
  height: 100%;
  background: #FFF4E0;
  display: flex;
  justify-content: center;
  align-items: center;
}

section {
  width: 350px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 30px;
}

h1 {
  font-family: "Staatliches", sans-serif;
  font-size: 152px;
  line-height: 90px;
  margin: 0;
}

h2 {
  font-family: "Staatliches", sans-serif;
  font-size: 68px;
  line-height: 68px;
  margin: 0;
}

p {
  padding-inline: 10px;
}

p:last-child {
  margin-block-end: 0;
}

a {
  color: black;
  font-weight: bold;
}

a:hover {
  color: #FA8126;
}

ul {
  padding-inline-start: 10px;
}

li::marker {
  content:  "";
}


li:nth-child(1)::before { --degs: 0deg }
li:nth-child(2)::before { --degs: 290deg }
li:nth-child(3)::before { --degs: 180deg }



li::before {
  content: "🔨";
  display: inline-block;
  padding-inline: 10px;
  animation: spin 2s linear infinite;
  animation-play-state: paused;
  transform: rotate(var(--degs));
}

li:hover::before {
  animation-play-state: running;
}

@keyframes spin {
  from     { transform: rotate(calc(var(--degs) + 0deg)); }
  to     { transform: rotate(calc(var(--degs) - 360deg)); }
}

aside {
  font-size: 190px;
  position: absolute;
  user-select: none;
}

aside:first-of-type {
  left: -50px;
  top: -30px;
  transform: rotate(340deg);
}

aside:last-of-type {
  bottom: -65px;
  right: -25px;
  transform: rotate(15deg);
}
