#name, #email, #number, #dropdown, #text {
  display: block;
  margin: 5px 0 15px 0;
  width: 100%;
  height: 30px;
  padding: 0 10px 0 10px;
  font-size: 16px;
  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;    /* Firefox, other Gecko */
  box-sizing: border-box;         /* Opera/IE 8+ */
  border: 2px solid rgba(100,50,50,0.5);
  border-radius: 5px;
  background: white;
}

.required {
  color: red;
}

input:focus, select:focus, textarea:focus {
  border: 2px solid orange !important;
}

.block {
  display: block;
  margin-top: 5px;
}

label {
  color: white;
  text-shadow: 0px 0px 3px black;
}

.label-title {
  margin-top: 15px;
  font-size: 20px;

}

.container {
  display: grid;
  max-width: 600px;
  margin: 0 auto;
}

form {
  margin: auto;
  position: relative;
  padding: 10px;
  border: 2px solid rgba(100,50,50,0.5);
  border-radius: 5px;
  overflow: hidden;
  font-weight: bold;
  width: 90%;
}

form::before {
  content:'';
  position: absolute;
  z-index:-1;
  top:-5%;
  left:-5%;
  bottom:0;
  right:-5%;
  background-color: rgba(200,100,50,0.8);
  background-size: auto;
/*   filter: contrast(0.5) brightness(1.5) blur(5px); */
  /* makup ? */
/*   box-shadow:inset 0 0 0 50vw rgba(255,255,255,0.2) */
}

.header {
  text-align: center;
  color: white;
  text-shadow: 2px 2px 2px black;
}

body, html {
  font-family: sans-serif;

}

.bg-image {
  overflow: auto;
  position: relative;
  left: 0;
  right: 0;
  z-index: 0;
/*   margin-left: 20px;
  margin-right: 20px; */
  margin-top: -10px;
}

.bg-image::before {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  margin: -2%;

  z-index: -1;
  
  display: block;
  background-image: url('./pizza.jpg');
  background-size: cover;
  width: 110%;
  height: 110%;
  filter: blur(5px);


/* select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
/*   background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>"); */
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: 5px;
  border: 1px solid #dfdfdf;
  border-radius: 2px;
  margin-right: 2rem;
  padding: 1rem;
  padding-right: 2rem;
  background-color: white;
} */

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

select::after {
  content: "\25bc"; /* down arrow */
}

input[type=submit] {
  width: 100%;
  height: 40px;
  outline: none;
  background: rgba(200,100,50);
  border: 2px solid rgba(100,50,50,0.5) !important;
  border-radius: 5px;
  transition: 0.3s;
  color: white;
  font-weight: bold;
}

input[type=button]:hover {
  cursor: pointer;
  background: rgba(250,150,50);
  border: 2px solid orange;

  
}

input[type=button]:active {
  transform: translateY(4px);
}