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

/* Body background and font */
body {
  background-color: #0a0a0a;
  color: #ddd;
  font-family: sans-serif;

  display: flex;              /* enable flex layout */
  justify-content: flex-start; /* vertical alignment */
  align-items: center;        /* horizontal centering */
  min-height: 100vh;          /* fill viewport height */
}

/* Wrapper: holds all content */
.wrapper {
  text-align: center;
  margin: 60px auto;          /* top spacing + auto horizontal centering */
  max-width: 800px;
}

/* Name */
h1 {
  color: #d28eff;
  margin-bottom: 10px;
  font-size: 4em; /* bigger name */
}

/* Domain */
.domain {
  color: #ff82d2;
  margin-bottom: 30px;
  font-size: 2em;
}

/* Links */
.links a {
  text-decoration: none;
  font-size: 1.8em;
  margin: 0 35px;  /* spacing between links */
  color: #d28eff;
}

.links a:nth-child(2) {
  color: #ff82d2; /* Art - pink */
}

/* Mobile stacking */
@media (max-width: 500px) {
  h1 { font-size: 3em; }
  .domain { font-size: 1.5em; }
  .links a {
    display: block;
    margin: 15px 0;
    font-size: 1.5em;
  }
}
