:root {
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #f4f4f4;
  color: #111;
}

.container {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.card {
  width: min(100%, 760px);
  display: grid;
  gap: 20px;
  justify-items: center;
  text-align: center;
}

.card picture {
  display: block;
  width: 100%;
}

.logo {
  width: min(100%, 620px);
  height: auto;
  display: block;
  margin-inline: auto;
}

.links {
  width: min(100%, 360px);
  display: grid;
  gap: 10px;
}

.link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 16px;
  border: none;
  border-radius: 12px;
  background: #fff;
  color: #111;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.2;
}

.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.link:hover,
.link:focus-visible {
  background: #e9e9e9;
  outline: none;
}

@media (max-width: 480px) {
  .container {
    padding: 16px;
  }

  .card {
    gap: 16px;
  }
}