html {
  background:  #F2F2F2;
  font-family: 'Open Sans', sans-serif;
  color: #404040;
}

.logo {
  position: fixed;
  right: 2%;
  top: 2%;
  margin:  2%;
  font-family: 'Fira Sans Extra Condensed', sans-serif;
  font-size: 65px;
  line-height: .9;
  color:  darkslategrey;
}

.sublogo {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  line-height: 1.1;
  font-weight: bold;
  color: #b34100;
}

#flexcontainer {
  margin: auto;
  width: 600px;
  min-width: 35%;
  margin-top: 10%;
  margin-bottom: 15%;
}

#flexcontainer1 {
  margin: auto;
  max-width: 50%;
  min-width: 35%;
  margin-top: -8%;

}

.border {
  border: 3px solid #ECECEC;
}

.textbox {
  display: grid;
  justify-content: center;
  margin-top: 25%;
  max-width: 600px;
}

.tweetbox {
  display: grid;
  justify-content: center;
  margin-top: 15%;
  background: white;
  min-width: 600px;
}

.box {
  display: inline-block;
  justify-content: center;
  margin-top: 15%;
  background: white;
  min-width: 600px;
}

b {
  color: #b34100;
}

.save {
  display:  inline-block;
  justify-content: center;
  padding: 10% 5% 5% 5%;
  font-family: 'Roboto Slab', serif;
  font-weight: bold;
  font-size: 20px;
  color: #b34100;
}

.space {
  margin-left:  12%;
  margin-bottom: 10%;
}

.answer {
  padding: 5%;
  justify-content: center;
}

h1 {
  font-family: 'Roboto Slab', serif;
  padding: 5% 5% 0 5%;
  font-size: 220px;
  line-height: 0;
  color:  #b34100;
}

h2 {
font-family: 'Roboto Slab', serif;
font-size: 32px;
color: #b34100;
}

.heading {
  position: relative;
  left: -20%;
}

.subhead{
  position:  relative;
  margin-top: -5%;
  justify-content: center;
}

p {
  font-family: 'Open Sans', sans-serif;
  font-size: 20px;  

}

img {
	max-width: 500px;
  max-height: 700px;
  padding-top: 10%;
	justify-content: center;
}

/* button */

button {
  font-family: 'Roboto Slab', serif;
  font-weight: bold;
  letter-spacing: .5px;
  border: 2px solid #b34100;
  border-radius: 30px;
  padding: 16px 65px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 19px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
  color: #b34100; 
  justify-content: center;
}

button:hover {
  background-color: #b34100;
  color: white;
}

.divider{
    width:5px;
    height:auto;
    display:inline-block;
}


a:visited {
  color: #b34100;
  text-decoration:  none;
}

a:link {
  color: #b34100;
  text-decoration:  none;
}



/* arrow*/
.pic {
  width: 70%;
  height: 50vh;
}

.arrow {
  position: absolute;
  top: 40%;
  left: 60%;
  height: 560px;
  width: 100px;
}

.arrow:before {
  content: "";
  width: 80px;
  height: 2px;
  background: #b34100;
  position: absolute;
  top: 50%;
  margin-top: -1px;
  right: 24px;
  transition: all 0.3s ease;
}

.arrow:hover:before {
  right: 34px;
  width: 35px;
}

.arrow:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-color: transparent transparent transparent #b34100;
  position: absolute;
  top: 50%;
  margin-top: -5px;
  right: 20px;
  transition: all 0.3s ease;
}

.arrow:hover:after {
  right: 34px;
  right: 30px;
}



/* scolly bar*/

.meter {
  box-sizing: content-box;
  height: 20px;
  border-radius: 25px;

}
.meter > span {
  display: block;
  height: 30px;
  background-color: rgb(43, 194, 83);
  bottom: -2px;
  overflow: hidden;
  animation: expandWidth 5s linear;
}


.animate > span:after {
 display: none;
}

@keyframes expandWidth {
   0% { width: 0; }
   100% { width: 100; }
}

.orange > span {
  background-image: linear-gradient(#d64f02, #b34100);
}


* {
  box-sizing: border-box;
}