*, *::before, *::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
body {
  /* 4. Add accessible line-height */
  line-height: 1.5;
  /* 5. Improve text rendering */
  -webkit-font-smoothing: antialiased;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
p {
  text-wrap: pretty;
}
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}
.container {
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;

}
.item {
    max-width: 80vw;
    text-align: center;
}

