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

body {
  background-color: #000;
  color: #fff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 40px 20px;
  text-align: center;
}

.container {
  max-width: 700px;
  width: 100%;
}

.logo {
  width: 125px;
  max-width: 100%;
  margin: 0 auto 40px;
  display: block;
}

h1 {
  font-size: 2em;
  margin-bottom: 10px;
  font-weight: 700;
  color: #19ace0;
}

p {
  margin-bottom: 20px;
  font-size: 1.2em;
  font-weight: 400;
}

.links {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.links li {
  margin: 10px 0;
}

.links a {
  color: #19ace0;
  text-decoration: none;
  font-size: 1.1em;
}

.links a:hover {
  text-decoration: underline;
}

footer {
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-size: 0.9em;
  color: #aaa;
  text-align: center;
  margin-top: 40px;
}

.location {
  text-align: center;
}

.location div {
  margin: 2px 0;
}
