* {
  box-sizing: border-box;
}
body {
  font-family: sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  background-color:black;
  color: white;
  margin: 0;
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  background: darkblue;
  background-image: linear-gradient(115deg, indigo, blue);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
h1 {
  font-weight: 400;
  line-height: 1.2;
}

p {
  font-size: 1.125rem;
}

h1,
p {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

label {
  display: flex;
  align-items: center;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

input,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
#title, #description, form {
  width: 100%;
  margin: 3.125rem auto 0 auto;
}
#title, #description {
  padding: 0 0.625rem;
  margin-bottom: 1.875rem;
  text-align: center;
}
#description {
  font-style: italic;
  font-weight: 200;
  text-shadow: 1px 1px 1px grey;
}
form {
  background: darkblue;
  padding: 2.5rem 0.625rem;
  border-radius: 0.25rem;
}
fieldset {
  margin: 0 auto 1.25rem auto;
  padding: 0.25rem;
}
#name, #email, #number, select {
  display: block;
  width: 100%;
  height: 2.375rem;
  padding: 0.375rem 0.75rem;
  color: gray;
  background-color: white;
  background-clip: padding-box;
  border: 1px solid grey;
  border-radius: 0.25rem;
}
#yes, #no, #web-devloper, #data-scientist {
  display: inline-block;
  margin-right: 0.625rem;
  min-height: 1.25rem;
  min-width: 1.25rem;
}
textarea {
  min-height: 120px;
  width: 100%;
  padding: 0.625rem;
  resize: vertical;
}
#submit {
  display: block;
  width: 100%;
  padding: 0.75rem;
  background: green;
  color: inherit;
  border-radius: 2px;
  cursor: pointer;
  border: none;
}
