/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #CCFF66;
  display: flex;
  justify-content: center;
  align-items: flex-start; /* 👈 important */
  min-height: 100vh;
}


/* Fixed 1920x1080 canvas */
.canvas {
  width: 1920px;
  height: 2160px; /* was 1080px */
  background-color: #CCFF66;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}


/* Title */
.title {
  margin-top: 120px;
  font-size: 50pt;
  font-weight: 300;
  color: #666633;
}

/* Link container */
.links {
  margin-top: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

/* Buttons */
.link-button {
  width: 380px;
  height: 80px;
  background-color: #CCFF66;
  border: 2px solid #666633;
  color: #666633;
  font-family: 'AntFarm', sans-serif;
  font-size: 30pt;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}


/* Hover + click effects */
.link-button:hover {
  background-color: #666633;
  color: #CCFF66;
}
.floating-flower {
  width: 220px;
  height: auto;
  transition: transform 6s linear;
}


.floating-flower:hover {
  transform: rotate(360deg);
}

}

.link-button:active {
  transform: scale(0.97);
}
.flower-link {
  position: absolute;
  right: 240px;
  top: 50%;
  transform: translateY(-50%);
}
