@import url("https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap");

#app {
  font-family: "Roboto", sans-serif;
  width: 81%;
}

.bg {
  height: 100vh;
  overflow: hidden;
  background: url("./assets/img/bg.png");
  background-size: cover;
}

.wheather-widget-container {
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wheather-widget {
  border: none;
  border-radius: 30px;
  background-color: #00acef;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
  -webkit-transition: transform 2.35s linear;
  -moz-transition: transform 2.35s linear;
  -ms-transition: transform 2.35s linear;
  -o-transition: transform 2.35s linear;
  transition: transform 2.35s linear;
}

#informer {
  width: 512px;
}

thead > tr > td > div > a {
  font-size: 36px !important;
}

table tbody .fact td,
table tbody .days td {
  font-size: 1.5vw !important;
  padding: 20px !important;
}

table tbody .days td .temperature,
table tbody .days td .precip,
table tbody .days td .wind {
  margin: 0 !important;
  padding-top: 8px !important;
}

.fact .weather-icon-container img,
.days .weather-icon-container img {
  width: 6vw !important;
}

.weather .precip svg {
  width: 35px;
  height: 35px;
  margin-bottom: 10px;
}

.wheather-widget-hidden {
  -webkit-transform: translateX(120%);
  -moz-transform: translateX(120%);
  -ms-transform: translateX(120%);
  -o-transform: translateX(120%);
  transform: translateX(120%);
}

.marquee {
  bottom: 5%;
  position: fixed;
  width: 100%;
  margin: 0 auto;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.25);
}

.marquee div {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 25s linear infinite;
}

.marquee span {
  color: #fff;
  font-weight: 500;
  font-size: 3em;
}

@keyframes marquee {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}

.container {
  max-width: 1086px;
  padding-left: 0;
}

#streams {
  display: inline-block;
  right: 0;
  height: 100%;
  width: 18%;
  padding-top:64px;
  top:0;
  position: absolute;
}

#streams .cam {
  height: 260px;
  width: 330px;
  border: none;
  margin-top:32px;
  margin-bottom: 32px;
}
