

html, body {
    height: 100%;
    margin: 0;
    
  }

.Page{
    height: 100%;
    background-color:#212121;
    /* background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite; */
    /* background: linear-gradient(270deg, #308ab4, #086c9b, #41afe3);
    background-size: 600% 600%;

    -webkit-animation: AnimationName 30s ease infinite;
    -moz-animation: AnimationName 30s ease infinite;
    animation: AnimationName 30s ease infinite; */
}

body {margin:0;}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;

  top: 0;
  width: 100%;
  font-family: 'Roboto', sans-serif;
}

li {
  color: white;
  font-size: xx-large;
  float: right;

}

li a {
  margin-right: 30px;
  display: block;
  color: white;
  text-align: center;
  font-size: x-large;
  padding: 14px 16px;
  text-decoration: none;
}

li a:hover:not(.active) {
  color: #8f8f8f;
}

.nav{
    padding-top: 40px;
}

.navFront{
    display: flex;
}

.img{
    display:inline-block; 
    margin-right:10% ; 
    margin-top: -10px;;
    margin-left: 20px;
}

.waterTapDiv{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.waterTap{
    
    position:absolute;
    width: 25%;
    /* height: 80%; */

    bottom:0px;
}

@media only screen and (max-width: 500px) {
    .waterTap{
        width: 80%;
    }
    li a {
        visibility: hidden;
    }
}
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .waterTap{
        width: 80%;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .waterTap{
        width: 70%;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .waterTap{
        width: 60%;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .waterTap{
        width: 60%;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .waterTap{
        width: 45%;
    }
}
/* Ultra Wide Monitor */
@media only screen and (min-width: 1400px) {
    .waterTap{
        width: 35%;
    }
}

@media only screen and (min-width: 2500px) {
    .waterTap{
        width: 25%;
    }
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

@-webkit-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@-moz-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}