:root {
  --bg-deep: #050b16;
  --bg: #0a1728;
  --blue-primary: #4d9fff;
  --blue-light: #a9cdff;
  --text: #eaf2fb;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 50% 30%, var(--bg) 0%, var(--bg-deep) 100%);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 5vh;
}

.page {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  padding: 2rem;
  text-align: center;
}

.logo {
  max-width: 560px;
  width: 80vw;
  height: auto;
}

.contact {
  font-size: 1.1rem;
  color: var(--text);
  max-width: 32rem;
  line-height: 1.6;
}

.contact a {
  color: var(--blue-light);
  text-decoration: none;
  border-bottom: 1px solid var(--blue-light);
}

.contact a:hover,
.contact a:focus {
  color: #ffffff;
  border-bottom-color: #ffffff;
}
