* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: sans-serif;
  font-weight: bold;
}

body {
  height: 100vh;
}

.bg {
  background-image: url("https://images.pexels.com/photos/1287075/pexels-photo-1287075.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940");
  -webkit-filter: blur(4px) brightness(40%);
          filter: blur(4px) brightness(40%);
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.container {
  width: 100vw;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
}

.input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}

input[type="submit"] {
  cursor: pointer;
  padding: 1em 2em;
  border-radius: 5px;
  outline: none;
  border: none;
  text-transform: uppercase;
  font-weight: bolder;
  font-size: .9em;
  background: white;
  mix-blend-mode: screen;
}

input[type="text"] {
  padding: 10px;
  border: none;
  background-color: transparent;
  border-bottom: 5px solid #eee;
  color: #eee;
  font-size: 1.5em;
  width: 300px;
}

input[type="text"]::-webkit-input-placeholder {
  color: #eee;
}

input[type="text"]:-ms-input-placeholder {
  color: #eee;
}

input[type="text"]::-ms-input-placeholder {
  color: #eee;
}

input[type="text"]::placeholder {
  color: #eee;
}

input[type="text"]:focus {
  outline: none;
}

.card {
  width: 50%;
  height: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
  color: #eee;
}

.card .name {
  font-size: 3em;
}

.card .temp {
  font-size: 2em;
}

@media screen and (max-width: 768px) {
  .input {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
/*# sourceMappingURL=style.css.map */
