@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab&display=swap');
*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Oswald', sans-serif;

}
body {
  background: #f3f3e8; /* #f3f3de */
}

/* style 1 index view  */

 .welcome{
    color: #53a10e;
    display: flex;
    justify-content: center;
    margin-bottom: 0.65em;
    font-family: 'Roboto Slab', serif;
}
.check-form{
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
}
.check-form p{
  margin-bottom: 30px;
}

.check-form input {

    width: 50px;
    background: #f3f3e8; 
    border: none;
    border-bottom: 2px solid  rgb(55, 58, 55);
    font-weight: bold;
   
}
.check-form input[type=email]{
    margin-left: 30px; 
    width: 200px;
    margin-bottom: 30px;
}

input{
  color: rgb(55, 58, 55);
}

.btn p{
    font-size: small;
}
.download button{
     background-color:#303030;
    border: none;
    margin-left: 20px;
    color: #53a10e;
    cursor: pointer;
    border-radius: 12px; 
}

#logoant{
margin-top: 2em;
width: 334px;
height: 324px;
}

.logo{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2em;
}
/* end of style 1 index view  */

/* wave animation */

@import url(//fonts.googleapis.com/css?family=Lato:300:400);

body {
  margin:0;
}

.inner-header {
  height:65vh;
  width:100%;
  margin: 0;
  padding: 0;
}

.flex { /*Flexbox for containers*/
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.waves {
  position:relative;
  width: 100%;
  height:15vh;
  margin-bottom:-7px; /*Fix for safari gap*/
  min-height:100px;
  max-height:110px;
}

.content {
  position:relative;
  height:16vh;
  text-align:center;
  background-color: rgba(166, 248, 196, 1);
}

.dllink{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  
}

#buttons{
  border-radius: 15px;
  width: 10em;
  font-size:large;
  transform: translate(50%,-50%);
  position: absolute;
  right: 50%;
  cursor: pointer;
}

.wavesgen{
  position: absolute;
  bottom: 0px;
  width: 100%;
}

.btn{
  padding: 15px 32px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  cursor: pointer;

}

.footer{
  position: fixed;
    bottom: 0;
    width: 100%;
}


/* Animation */

.parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5)     infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}
@keyframes move-forever {
  0% {
   transform: translate3d(-90px,0,0);
  }
  100% { 
    transform: translate3d(85px,0,0);
  }
}
/*Shrinking for mobile*/
@media (max-width: 768px) {
  .waves {
    height:40px;
    min-height:40px;
  }
  .content {
    height:30vh;
  }
  h1 {
    font-size:24px;
  }
}

.password_check{
  display: flex;
  align-items: center;
  justify-content: center;
}