* {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  /* Viewport Height */
  height: 100vh;
  background-color: #cfcfcf;
}

.container {
  background-color: white;
  padding: 25px;
  width: 300px;
  text-align: center;
  position: relative;
  border-radius: 5px;
  /* Soft shadow */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 {
  /* Text Colour */
  color: white;
  background-color: rgb(195, 0, 255);
  padding: 15px;
  position: absolute;
  top: -30%;
  left: 10%;
  width: auto;
  text-align: center;
  border-radius: 10px;
}

p {
  background-color: #ffffff;
  margin-top: 10px;
  margin-bottom: 0;
  text-align: center;
}
