html {
  height: 100%;
  font-family: open-sans, Arial, Helvetica, sans-serif;
  font-weight: 100;

}

body {
  height: calc(100% - 70px);
  padding: 0;
  margin:0;
}

.main-container {
    display:grid;
    grid-template-rows: 1fr 400px 1fr;
    height:100%;
}

div.middle-panel {
  grid-row-start:2;
  /* border-top: 1px solid #0983c5; */
  /* border-bottom: 1px solid #0983c5; */
}

div.title {
  align-self: end;
  padding: 0 100px;
  font-family: ubuntu;
  font-size: 2em;
}

div.main-text {
  width: 35%;
  display:flex;
  justify-content: center;
  flex-direction: column;
  padding: 0px 100px;
  background: #0983c5;
  color: white;
  height: 100%;
  line-height: 22px;
  font-size: 18px;
}

.main-text h4 {
  padding: 0;
  margin: 0;
}

.sign-up {
  display: flex;
}

input {
  border: none;
  padding: 10px;
  width: 70%;
}

button.submit {
  background: #090944;
  color: white;
  border: none;
  margin-left: 10px;
  width: 100px;
}

#texas {
  position: absolute;
  right:0;
  top: 17%;
  height: 800px;
}

footer {
  height:70px;
  background: rgb(9, 9, 68);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

#texas svg path {
  stroke-dasharray: 4000;
  -webkit-animation: dash 5s 200ms infinite alternate;
  -moz-animation: dash 5s 200ms infinite alternate;
  -o-animation: dash 5s 200ms infinite alternate;
  animation: dash 5s 200ms infinite alternate;
}

@-webkit-keyframes dash {
  from {
     stroke-dashoffset: 4000;
  }

  to {
    stroke-dashoffset: 0;
  }
}
@-moz-keyframes dash {
  from {
     stroke-dashoffset: 4000;
  }
  
  to {
    stroke-dashoffset: 0;
  }
}
@-o-keyframes dash {
  from {
     stroke-dashoffset: 4000;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes dash {
  from {
     stroke-dashoffset: 4000;
  }
  
  to {
    stroke-dashoffset: 0;
  }
}