@import url(./footer.css);
@import url(./main.css);
@import url(./form.css);

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --border: rgba(255, 255, 255, 0.5);
}

body,
button,
a,
input {
  color: #fff;
  font: 400 1rem "Poppins", sans-serif;
}

body {
  width: 100%;
  height: 100vh;
  display: flex;
  background: #333;
}

.background {
  position: fixed;
  inset: 0;

  background-image: url(../assets/background.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.card {
  width: 500px;
  height: 110px;

  overflow: hidden;

  margin: auto;
  padding: 32px 32px 40px;

  display: flex;
  flex-direction: column;
  row-gap: 24px;

  border: 1px solid var(--border);
  border-radius: 12px;

  z-index: 1;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);

  transition: all 0.3s;
}

.card.active {
  height: 533px;
}

#humidity,
#speed-wind,
#temperature {
  font-weight: 500;
  font-family: "Bebas Neue", sans-serif;
}
