/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Courier New', Courier, monospace;
  background-color: #0d0d0d;
  color: #d4f4c6;
}

/* Wrapper to center content */
.landing-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

/* Box styling */
.landing-container {
  background-color: #1e1e1e;
  padding: 2rem 3rem;
  border: 2px solid #3dfc89;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 20px #3dfc89;
  max-width: 500px;
  width: 90%;
}

/* Title styling */
h1 {
  font-size: 2.5rem;
  color: #3dfc89;
  margin-bottom: 1rem;
}

.brand {
  color: #5fff9d;
}

/* Tagline */
.tagline {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #aefacb;
}

/* Button layout */
.buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.button {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  background-color: #3dfc89;
  color: #0d0d0d;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.2s;
}

.button:hover {
  background-color: #2dfc6b;
}
