:root {
  color-scheme: light dark;
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  font-size: 20px;
  color: black;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 20%, rgba(214, 236, 248, 0.85) 0%, rgba(214, 236, 248, 0) 55%),
    linear-gradient(135deg, #f6fbff 0%, #d9edff 45%, #c9f4e6 100%);
}

p {
  font-size: 1.5rem;
  margin: 6px;
}

a {
  color: black;
  font-weight: 800;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.logo-wrapper {
  display: flex;
  margin-top: 10%;
  align-items: center;
  justify-content: center;
}

.logo {
  display: block;
  max-width: 60vw;
  height: auto;
}

.attributes {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
  text-align: center;
}

@media (max-width: 640px) {
  :root {
    font-size: 14px;
  }

  body {
    padding: 2.5rem 1.5rem;
  }

  .logo-wrapper {
    margin-top: 3rem;
  }

  .logo {
    max-width: 70vw;
  }

  .attributes {
    margin-top: 1.5rem;
    text-align: center;
    gap: 0.25rem;
  }

  .attributes p {
    margin: 0.5rem 0;
  }
}
