:root {
  --bg: #ffffff;
  --muted: #000000;
  --accent: #000000;
  --link: #525252;
  --maxw: 860px;
}
* 
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Inter', sans-serif;
  background-color: rgb(255, 255, 255);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.container {
  text-align: center;
}

.logo-container {
  margin-top: 20px;
}

.main-logo {
  max-width: 100%;
  height: auto;
}

.actions {
  display: flex;
  gap: 18px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 15px;
  align-items: center;
  justify-content: center;
}

.actions a {
  color: var(--muted);
  text-decoration: none;
}

.actions a:hover {
  color: var(--link);
}

footer {
  margin-top: 20px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}