/*body{
    background-image: linear-gradient(to bottom, #647BD1, #F59EFF);
    height: 844px;
    width: 390px;

}*/
.body{
    background-image: linear-gradient(to bottom, #647BD1, #F59EFF);
    height: 844px;
    width: 390px;
    text-align: center;
    margin-left: 40%;
    margin-top: 80px;
    border-radius: 30px;
    justify-content: center;
    font-family: 'Inter', sans-serif;
}

h1{
    font-family: 'Inter', sans-serif;
    font-size: 44px;
    color: white;
    font-weight: 300;
}
.top{
    width: 180px;
    height: 128px;
    padding-bottom: 5px;
    margin-top: 75%;
}
a:link {
    color: none;
  }
  a:visited {
    color: none;
  }
  a:hover {
    color: none;
    text-decoration: none;
  }
  a:active {
    color: none;
  }
 span{
  color:black;
  font-weight:800;

 }
 .splashGrid{
  display:grid;
  grid-template-rows:75% 25% ;
  grid-template-areas:
  'body'
  'waveBox';
}
.body{
  grid-area: body;
}
.waveBox{
  grid-area:waveBox;
  margin-top:33px ;
  position:relative;
  width:390px;
  height:105px;
  overflow:hidden;
  margin-left: 40%;
  margin-right:40%;
  border-radius: 30px;
}
.wave{
  position:absolute;
  border-radius: 30px;
  left:0;
  width: 390px;
  height: 350px;
  background: url(../Images/wave.png);
  background-size:1000px 100px;
}
.waveBox .wave.wave1{
  animation: animate2 30s linear infinite;
  z-index:auto;
  opacity:1;
  animation-delay:0s;
}
.waveBox .wave.wave2{
  animation: animate2 15s linear infinite;
  z-index:999;
  opacity:0.5;
  animation-delay:-5s;
}
@keyframes animate
{
  0%
  {
    background-position-x:0;
  }
  100%
  {
    background-position-x: 1000px;
  }
}
@keyframes animate2
{
  0%
  {
    background-position-x:0;
  }
  100%
  {
    background-position-x: -1000px;
  }
}
