html {
    box-sizing: border-box;
}
  *, *:before, *:after {
    box-sizing: inherit;
    margin: 0;
}

header {
    background: rgb(30, 199, 185);    
    margin: 0 auto;
    padding: 10px 0;
    display: inline-block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 1.0;
  }

  #menu-logo {
    height: 80px;    
    display: inline-block;
    position: absolute;
    left: 0;
    top: -8px;
    margin: 0px 5px 10px 10px;
  }

  menu {
    Margin: 15px;
    padding-inline-start: 0;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 25%;
    text-align: center;
  }
  .table-style {
    font-family: Nunito, sans-serif;
    -webkit-text-stroke: 0px;
    font-size: 18px;
    text-align: center;
    display: inline-block;
    margin: 0px 15px 0px 15px;
    padding: 0px 10px 0px 10px;
  }

td {
  margin: 0px 15px 0px 15px;
  padding: 0px 10px 0px 10px;
}

/*----styling for menu links------*/
.table-style a:link, a:visited, a:active {
  color: #FFFFFF;
  text-decoration: none;
  }
.table-style a:hover {
   color: rgb(238, 224, 32);
}


/*----styling for menu icons------*/
#menu-icons {
  position: relative;
  top: 1px;
  left: 45%;
}

#menu-icons img {
  height: 30px;
  margin: 5px 5px 0px 5px;
}

/*------Body--------*/

/* center Hydro logo here */
#logo-index {
  padding-top: 10%;
  position: relative;
  left: 25%;
  opacity: 1.0;
}

#logo-left {
  display: inline-block;
  position: relative;
  right: 25%;
  top: 200px;
}


.email {
  color:rgb(30, 199, 185);
  text-decoration: none;
}
a {
  text-decoration: none;
}
a:hover {
  color: rgb(229, 255, 0);
  text-decoration: none;
}

body {
  /*------This sets the background image--------*/
  /* background-image: url(https://static.wixstatic.com/media/84770f_7ed8ce15f4fb42949c3ef6d4e064a023~mv2_d_5760_3240_s_4_2.jpg); */
  background-image: url(https://media.giphy.com/media/lFNmSjRDN9SiLJ3a9Z/giphy.gif);
  background-position: left center;
  background-repeat:  no-repeat;
  background-attachment: fixed;
  background-size:  contain;
  background-color: rgb(4, 70, 75);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat, Nunito, sans-serif;
  display: inline;
}

/*------This make the text slide left--------*/
.slide-left {
  width:100%;
  overflow:hidden;
}
.slide-left {
  animation: slide-left 1.25s;
}

@keyframes slide-left {
  from {
    margin-left: 100%;
    width: 300%; 
  }

  to {
    margin-left: 0%;
    width: 100%;
  }
}
/*------This make the text slide up--------*/
.slide-up {
  overflow:hidden;
}
.slide-up {
  animation: 1.25s slide-up;
  margin-top:0%;
}

@keyframes slide-up {
  from {
    margin-top: 100%;
    height: 300%; 
  }

  to {
    margin-top: 0%;
    height: 100%;
  }
}


/*------This margin holds the text to the right side--------*/

h1 {
  margin: 0% 10% 0 60%;
  color: ivory;
}


p {
  font-size: 20px;
  margin: 0 5% 0 55%;
  color: ivory;
  }

form {
  font-size: 20px;
  margin: 0 5% 0 55%;
  color: ivory;
}

/*------Footer--------*/

  footer {
    background: rgb(30, 199, 185);
    padding: 5px 0;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: 1.0;
  }
  .footer-text {
    font-size: 15px;
    font-weight: bold;
    color: rgb(20, 33, 47);    
  }
  .footer-text a:link {
    font-size: 15px;
    color: rgb(20, 33, 47);
    text-decoration: none;
  }
  .footer-text a:hover {
    color: blue;
    text-decoration: none;
  }
  