#screen, #screenout {
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    #openweathermap-widget-21 {
    	position:absolute;
    	top: 20px;
    	right:20px;
    	z-index: 2;
    	opacity: 90%;
    }
    svg {
  	opacity: 90%;
  }
    
    
    #bigtext span {
    	display: table-row;
		vertical-align: middle;
	}
	#bigtext {
		color: white;
		opacity: 70%;
		font-family: 'Anton', sans-serif;
		width: 75vw;
		margin:auto;
	}
    
  #bigtext.bt2 {
  	width:50vw;
  }
      #bigtext.bt3 {
  	width:40vw;
  }
    /* Styles */

body {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-size: 11px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.2),rgba(0, 0, 0, 0.2)) , url("../img/wood.jpg");
  /*background-image: url("../img/wood.jpg");*/
  background-size: cover;
  overflow: hidden;
}

.component__weather-box {
  width: 420px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 2px 5px 20px 1px #444;
  
}

.component__weather-content {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #006747;
  height: 120px;
}

.component__weather-content:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.3;
  background-repeat: no-repeat;
  background-position: 0 63%;
  background-size: cover;
}

.weather-content__overview {
  width: 50%;
  text-align: center;
  display: inline-block;
  float: left;
  z-index: 2;
  position: relative;
}

h1 {
  font-weight: 400;
  font-size: 40px;
  line-height: 40px;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-top: 0.75em;
}

.weather-content__temp {
  width: 50%;
  z-index: 2;
  text-align: center;
  float: left;
  font-size: 50px;
  text-align: center;
  margin-top: 0.5em;
  position: relative;
  vertical-align: middle;
}

.weather-content__temp .degrees {
  line-height: 40px;
}

.weather-content__temp .wi-degrees {
  margin-left: -10px;
  vertical-align: top !important;
}

.currentTemp .wi {
  margin-right: 20px;
  font-size: 40px;
  vertical-align: baseline;
}

.component__forecast-box {
  display: flex;
  clear: both;
}

.forecast__item {
  flex: 1;
  text-align: center;
}

.forecast-item__heading {
  background: #FCE300;
  border: 1px solid #006747;
  border-left: none;
  text-transform: uppercase;
  color: #006747;
  font-weight: 800;
  padding: 10px;
}

.forecast-item__info {
  background: #fff;
  color: #006747;
  padding-bottom: 10px;
  border-right: 1px solid #006747;
}

.forecast-item__info .wi {
  display: block;
  margin: 0 auto;
  font-size: 24px;
  padding: 15px 0;
}

.forecast-item__info .degrees {
  font-size: 20px;
  line-height: 20px;
}

.forecast-item__info .degrees .wi-degrees {
  display: inline;
}

small {
  font-size: 12px;
}

svg {
  display: block;
  position: absolute;
  top: 120px;
  left: 120px;
  transform: translate(-50%, -50%);
  
}