body {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100vh;
  width: 100%;
  font-family: sans-serif;
}

body:before {
  content: '';
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  background: url(hse.jpg) no-repeat center;
  background-size: cover;
  filter: blur(4px);
}

.game {
  width: 40%;
  padding: 20px;
  border-radius: 4px;
  background: white;
  z-index: 1;
}

.game_header {
  text-align: center;
  margin-bottom: 25px;
}

.logo {
  display: inline-block;
  height: 100px;
  width: 100px;
  background: url(hse_logo.svg) no-repeat center;
  background-size: cover;
}

.game h1 {
  text-align: center;
}

.form {
  text-align: center;
}

.form_field select {
  height: 30px;
  widht: 100%;
  background: white;
  border: 2px solid #007bcb;
  border-radius: 4px;
  padding: 0 20px;
  font-size: 16px;
  font-weight: bold;
}

.form_bottom {
  margin-top: 25px;
  text-align: center;
}

.form_submit {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: normal;
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  -webkit-appearance: none;
  margin-top: 25px;
  height: 30px;
  background: #007bcb;
  color: white;
  border-radius: 4px;
  padding: 0 20px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

.game_result {
  text-align: center;
}
