body {
  background: #6b1212;
  font-family: "Comic Sans MS", "Comic Sans", cursive;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 60px;
  margin: 0; 
  height: 100%; 
  overflow: hidden
}

.logo {
  max-width: 800px;
  width: 100%;
  height: auto;
}

.button-row {
  display: flex;
  justify-content: center;
  gap: 120px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 18px 32px 18px 24px;
  background: linear-gradient(180deg, #c9302c 0%, #a02622 100%);
  border: 4px solid #000000;
  border-radius: 14px;
  box-shadow: 0 6px 0 #000000, inset 0 -6px 0 rgba(0, 0, 0, 0.25);
  transform: skewX(-8deg);
  transition: transform 0.1s ease;
  text-decoration: none;
}

.button-team {
  position: fixed;
  right: 24px;
  bottom: 24px;
  padding: 10px 16px;
  gap: 0;
}
.button-team .icon { font-size: 24px; }
.button:hover {
  filter: brightness(1.08);
}
.button:active {
  transform: skewX(-8deg) translateY(3px);
  box-shadow: 0 2px 0 #000000, inset 0 -4px 0 rgba(0, 0, 0, 0.25);
}

.button > * {
  transform: skewX(8deg);
}

.icon {
  color: #fff;
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 2px 2px 0 #000000;
}

.label {
  display: flex;
  flex-direction: column;
}

.label .title {
  color: #fff;
  font-size: 28px;
  text-shadow: 2px 2px 0 #000000;
}
.label .subtitle {
  color: #f0a020;
  font-size: 13px;
  margin-top: 6px;
}

