@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css);
@import url("https://fonts.googleapis.com/css?family=Roboto");
html,
body,
* {
  box-sizing: border-box;
  font-size: 16px;
}

html,
body {
  background-color: #fff;
  height: 100%;
  text-align: center;
}


h2 {
  font-family: "Proxima Nova", sans-serif;
  font-size: 26px;
  line-height: 1;
  color: #00dbeb;
  margin-bottom: 0;
}

h3 {
  font-size: 24px;
  line-height: 39.2px;
  font-weight: regular;
}

.container{
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.flexbox{
  display: flex;
  justify-content: space-between;
}

.link{
  border: none;
  background: none;
  padding: 10px;
}

.section{
  padding-left: 140px;
  padding-right: 140px;
  padding-top: 15vh;
  padding-bottom: 10vh;
}

.navbar{
  margin-top: 30px;
}

.hero_heading{
  font-size: 150px;
  font-weight: bold;
  line-height: 156px;
}

.hero_subheading{
  margin-top: 30px;
  margin-bottom: 50px;
}

.green_underline{
  background-color: #8F9D5B;
}

.hero.green_underline{
  width: 880px;
  height: 35px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -40px;
  margin-bottom: 30px;
}

input[type="file"]{
  display: none;
}

.button{
  background-color: #D96D4D;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 40px;
  padding-right: 40px;
  border-radius: 1000px;
  font-weight: bold;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  border: none;
}

.edit_buttons{
  margin-top: 40px;
}

/*copied code*/

.uploader {
  display: block;
  clear: both;
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
}
.uploader label {
  float: left;
  clear: both;
  width: 100%;
  padding: 2rem 1.5rem;
  text-align: center;
  background: #fff;
  border-radius: 7px;
  border: 3px solid #eee;
  transition: all 0.2s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.uploader label:hover {
  border-color: #00dbeb;
}
.uploader label.hover {
  border: 3px solid #00dbeb;
  box-shadow: inset 0 0 0 6px #eee;
}
.uploader label.hover #start i.fa {
  transform: scale(0.8);
  opacity: 0.3;
}
.uploader #start {
  float: left;
  clear: both;
  width: 100%;
}
.uploader #start.hidden {
  display: none;
}
.uploader #start i.fa {
  font-size: 50px;
  margin-bottom: 1rem;
  transition: all 0.2s ease-in-out;
}
.uploader #response {
  float: left;
  clear: both;
  width: 100%;
}
.uploader #response.hidden {
  display: none;
}
.uploader #response #messages {
  margin-bottom: 0.5rem;
}
.uploader #file-image {
  display: inline;
  margin: 0 auto 0.5rem auto;
  width: auto;
  height: auto;
  max-width: 180px;
}
.uploader #file-image.hidden {
  display: none;
}
.uploader #notimage {
  display: block;
  float: left;
  clear: both;
  width: 100%;
}
.uploader #notimage.hidden {
  display: none;
}
.uploader progress,
.uploader .progress {
  display: inline;
  clear: both;
  margin: 0 auto;
  width: 100%;
  max-width: 180px;
  height: 8px;
  border: 0;
  border-radius: 4px;
  background-color: #eee;
  overflow: hidden;
}
.uploader .progress[value]::-webkit-progress-bar {
  border-radius: 4px;
  background-color: #eee;
}
.uploader .progress[value]::-webkit-progress-value {
  background: linear-gradient(to right, #393f90 0%, #00dbeb 50%);
  border-radius: 4px;
}
.uploader .progress[value]::-moz-progress-bar {
  background: linear-gradient(to right, #393f90 0%, #00dbeb 50%);
  border-radius: 4px;
}
.uploader input[type=file] {
  display: none;
}
.uploader div {
  margin: 0 0 0.5rem 0;
  color: #5f6982;
}
.uploader .btn {
  display: inline-block;
  margin: 0.5rem 0.5rem 1rem 0.5rem;
  clear: both;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  text-transform: initial;
  border: none;
  border-radius: 0.2rem;
  outline: none;
  padding: 0 1rem;
  height: 36px;
  line-height: 36px;
  color: #fff;
  transition: all 0.2s ease-in-out;
  box-sizing: border-box;
  background: #00dbeb;
  border-color: #00dbeb;
  cursor: pointer;
}