

body, html {
  height: 100%;
}

* {
  box-sizing: border-box;
}

p {
    font-size: 18px;
    font-weight: bold;
    font-style: italic;
    text-align: center;
}


.bg-image {
  background-image: url("ItalianGroceryStore.jpg");

  filter: blur(8px);
  -webkit-filter: blur(8px);

  height: 100%;

  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bg-text {
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.4);
  color: white;
  font-weight: bold;
  border: 3px solid #f1f1f1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 80%;
  padding: 20px;
  text-align: center;
}

form {
  background-color: white;
  font-weight: bold;
  font-family: cursive;
  color: rgb(204, 44, 12);
  font-size: 24px;
  border: 5px solid green;
  position: static;
  text-align: center;
}
