html, body {
  margin: 0;
  min-height: 100%;
  min-width: 100%;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
  min-height: 100vh;
  background: #ffffff;
}

* {
  box-sizing: border-box;
}

/* Secondary Board */
.secondary-board {
  position: absolute;
  left: 422px;
  top: -166px;
  width: 1370px;
  height: 197px;
  background: #ffffff;
  overflow: hidden;
  z-index: 0;
}

/* Main Board */
.board {
  position: relative;
  width: 1366px;
  height: 768px;
  background: #ffffff;
  overflow: hidden;
  z-index: 1;
}

/* Welcome Text */
.welcome-text {
  position: absolute;
  left: 202px;
  top: 51px;
  width: 865px;
  height: 76px;
  color: rgba(0, 0, 0, 1);
  text-transform: uppercase;
  font-size: 30px;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 2px;
  font-family: "DM Mono", monospace;
  font-style: normal;
  font-weight: 500;
}

/* Small Logo */
.logo-small {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 250px;
  height: 202px;
  background: #ffffff;
  overflow: hidden;
}

.logo-small-image {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 250px;
  height: 202px;
  background: url(logo-small.png) no-repeat center center / cover;
}

/* Cards Container */
.cards-container {
  position: absolute;
  left: 323px;
  top: 147px;
  width: 681px;
  height: 151px;
  display: flex;
  gap: 21px;
}

/* Individual Cards */
.card {
  position: relative;
  width: 213px;
  height: 151px;
  background: #bcc5de;
  border: 1px solid #005fe5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}

.card-text {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  line-height: 1.2;
  text-align: justify;
  letter-spacing: 0px;
  font-family: "DM Mono", monospace;
  font-style: normal;
  font-weight: 400;
  word-wrap: break-word;
}

/* Links Container */
.links-container {
  position: absolute;
  left: 323px;
  top: 331px;
  width: 681px;
  height: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Link styling */
.link {
  color: rgba(0, 0, 0, 1);
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: 0px;
  font-family: "DM Mono", monospace;
  font-style: normal;
  font-weight: 500;
  text-decoration: none;
}

.link:hover {
  text-decoration: underline;
  color: #005fe5;
}

.link-separator {
  color: rgba(0, 0, 0, 1);
  font-size: 24px;
  font-family: "DM Mono", monospace;
  font-weight: 500;
}

/* Link 1 specific styling (orange color) */
.link-1 {
  color: rgba(236, 128, 73, 1);
}

.link-1:hover {
  color: #ea6000;
}

/* Big Logo */
.logo-big {
  position: absolute;
  left: 1026px;
  top: 157px;
  width: 293px;
  height: 237px;
  background: url(logo-big.png) no-repeat center center / cover;
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.2);
}

/* Button */
.button-container {
  position: absolute;
  left: 20px;
  top: 315px;
  width: 52px;
  height: 42px;
}

.button-rect {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 52px;
  height: 42px;
  background: #000000;
  border-radius: 8px;
}

.button-text {
  position: absolute;
  left: 11px;
  top: 7px;
  width: 31px;
  height: 28px;
  color: rgba(255, 255, 255, 1);
  font-size: 24px;
  line-height: 1.2;
  text-align: center;
  font-family: "Work Sans", sans-serif;
  font-style: normal;
  font-weight: 700;
}

/* Plant Images */
.plant-03 {
  position: absolute;
  left: 680px;
  top: 496px;
  width: 208px;
  height: 268px;
  background: #ffffff;
  overflow: hidden;
}

.plant-03-image {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 208px;
  height: 268px;
  background: url(plant-03.png) no-repeat center center / cover;
}

.plant-05 {
  position: absolute;
  left: 186px;
  top: 460px;
  width: 274px;
  height: 246px;
  background: #ffffff;
  overflow: hidden;
}

.plant-05-image {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 274px;
  height: 246px;
  background: url(plant-05.png) no-repeat center center / cover;
}
