* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

body {
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bigger-box {
  background: #000000;
  opacity: 0.8;
  border-radius: 25px;
  padding: 20px;
  width: 95%;
  max-width: 450px;
}

.input-city {
  border: none;
  outline: none;
  padding: 10px;
  border-radius: 25px;
  font-size: 18px;
  background-color: #7c7c7c2b;
  color: #ffffff;
  width: calc(100% - 70px);
}

.button-search {
  border: none;
  outline: none;
  padding: 10px;
  border-radius: 50px;
  background-color: #7c7c7c2b;
  cursor: pointer;
  float: right;
}

.img-search {
  width: 20px;
}

.medium-box {
  margin-top: 30px;
}

.city {
  color: #ffffff;
  font-size: 28px;
  font-weight: 300;
}

.temp {
  font-size: 20px;
  color: #ffffff;
  margin-top: 20px;
}

.smaller-box {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.text-forecast {
  color: #ffffff;
  margin-left: 20px;
  text-transform: capitalize;
}

.humidity {
  color: #ffffff;
  margin-top: 20px;
}

.box-video {
  position: fixed;
  bottom: 0;
  left: 0;
  min-width: 100%;
  min-width: 100%;
  z-index: -3;
}

@media only screen and (max-width: 600px) {
  /* Estilos para telas com largura máxima de 600 pixels ou menos */
  .bigger-box {
    max-width: 100%;
    padding: 10px;
  }

  .input-city {
    width: calc(100% - 20px);
  }

  .button-search {
    float: none;
    margin-top: 10px;
  }
}
