/* Reset default margins and paddings */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: repeating-linear-gradient(
    -45deg,
    #000,
    #000 20px,
    #ffc107 20px,
    #ffc107 40px
  );
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.container {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 40px;
  border-radius: 12px;
}

h1 {
  color: white;
  font-size: 2rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

p {
  color: white;
  font-size: 2.5rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}