* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #E7E7F1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
}

.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.placeholder {
  position: relative;
  z-index: 1;
  text-align: center;
  background-color: #F0F0F8;
  border-radius: 16px;
  padding: 40px 60px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

h1 {
  font-size: 2.5rem;
}

p {
  margin: 1em 0;
  olddisplay: block;
}

a {
  color: #E31337;
  text-decoration: none;
}

a:hover {
  color: #FF0000;
  text-decoration: underline;
}
