:root {
  background: radial-gradient(ellipse at center, rgb(80, 80, 80) 0%, rgb(0, 0, 0) 50%);
  min-height: 100vh;
  color: white;
  font-family: "Courier New", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  margin: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.data {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.card {
  filter: drop-shadow(0 0 0.75rem rgb(0, 0, 0));
  border: 4px solid rgb(0, 0, 0);
  padding: 5px 15px;
  margin-bottom: 10px;
  max-width: 100%;
  width: max-content;
  text-align: center;
  background: rgba(0,0,0,0.5);
}

.data footer {
  color: black;
}