*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;

  background: linear-gradient(
    to bottom,
    #4457EE 10%,
    #6E7AF0 20%,
    #A6A3E8 48%,
    #DDB7EB 53%,
    #F1B3A3 66%,
    #E78A6E 76%,
    #F6C46A 84%,
    #BFAE7A 87%,
    #6B7C8F 92%,
    #364E6E 100%
  );
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  min-height: 100vh;

  font-family: "Montserrat", Arial, sans-serif;
}

.page {
  width: min(1000px, 92vw);
  margin: 0 auto;
  padding: 2.25rem 0 3.5rem;
}

header {
  width: min(1000px, 92vw);
  margin: 0 auto;
  padding: 16px 0;

  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-links {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  padding: 10px 0;
}

.hero-links a {
  text-decoration: none;
  font-weight: bold;
  color: #F2F4F8;

  padding: 0.4rem 0.75rem;
  border-radius: 999px;

  transition: background-color 0.2s ease, transform 0.2s ease;
}

.hero-links a:hover {
  background-color: rgba(255, 255, 255, 0.18);
}

.hero-links a:focus {
  outline: 3px solid rgba(252, 246, 207, 0.8);
  outline-offset: 3px;
}

.about-card {
  margin-top: 1.25rem;
  padding: 2rem 1.75rem;

  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);

  color: rgba(255, 255, 255, 0.95);
}

.about-card h1 {
  margin: 0 0 1rem;
  font-size: 2.4rem;
}

.about-card p {
  margin: 0 0 1rem;
  line-height: 1.6;
}

footer {
  text-align: center;
  font-size: 0.9rem;
  padding: 32px 16px;
  background: transparent;
  color: #fcf6cf;
}
