:root {
  --accent: #e4477f;
  --ink: #101828;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, sans-serif;
  color: white;
  background:
    linear-gradient(115deg, rgba(17, 23, 34, .92), rgba(17, 23, 34, .55)),
    url("./assets/stade-france.png") center / cover no-repeat;
}

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

.panel {
  width: min(760px, 100%);
  padding: 44px;
  border-radius: 8px;
  text-align: center;
  background: rgba(0, 0, 0, .42);
  backdrop-filter: blur(14px);
}

p {
  margin: 0 0 12px;
  color: #38c8ff;
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(46px, 7vw, 82px);
  line-height: .95;
}

.actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

a {
  display: grid;
  place-items: center;
  min-height: 86px;
  border-radius: 8px;
  color: white;
  font-size: 30px;
  font-weight: 900;
  text-decoration: none;
  background: var(--accent);
}

a:hover {
  filter: brightness(1.12);
}

@media (max-width: 640px) {
  .actions {
    grid-template-columns: 1fr;
  }
}
