*{
    margin: 0;padding: 0;
    box-sizing: border-box;
}
main{
    width: 100%;
    height: 100vh;
    /* background-color: aqua; */
    
}
.right-half{
    position: relative;
    width: 29%;
    height: 100vh;
    /* background-color: aquamarine; */
    display: flex;
    align-items: center;
    justify-content: right;
    float: right;
    background-color: black;
    
}
.right-half .wave{
    height: 100%;

    position: absolute;
    
}
.plate{
    position: absolute;
   height: 550px;
   right: 170px;
   animation: spin 60s infinite;
   /* filter: drop-shadow(0px 0px 10px rgb(0, 0, 0)); */
    z-index: 1;
    
}
@keyframes spin{
    0%{
rotate: 0deg;
    }
    50%{
       
rotate: 360deg;
    }
    100%{

    }
}
nav{
    width: 100%;
    height: 100px;
    /* background-color: aqua; */
    position: fixed;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
ul{
    display: flex;
    list-style: none;
    margin-right: 0px;
}
li{
    transition: 0.5s;
}
a{
    text-decoration: none;
    font-size: 20px;
    color: black;
    margin: 18px;
    text-transform: capitalize;
    font-family: sans-serif;
    transition: 0.5s;
    

}
a:hover{
    color: rgb(255, 255, 255);
  
}
li:hover{
  scale: 1.1;
  background-color: black;
  padding: 10px 10px;
  border-radius: 30px;
}
nav img{
    width: 300px;
    margin-left: -140px;
}
.search-container{
    width: 300px;
    height: 40px;
    background-color: white;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 20px;
    margin-right: -70px;
}
nav i{
    color: rgb(0, 0, 0);
}
nav input{
    width: 80%;
    height: 40px;
    border-radius: 30px;
    outline: none;
    border: none;
    margin-left: 10px;
    color: black;
    font-family: sans-serif;
    text-transform: capitalize;
    font-size: 17px;
    
}
.text-content{
    width: 50%;
    height: 100vh;
    /* background-color: black; */
    position: absolute;
    /* top: 120px; */
    /* text-transform: capitalize; */
    font-family: 'roboto';
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.text{
    margin-left: 100px;
}
h3{
    font-size: 35px;
    font-weight: normal;
    color: rgb(202, 0, 0);
   font-family: 'Montserrat';
   letter-spacing: 5px;
   margin-bottom: 20px;
}
h1{
    font-size: 80px;
     font-family: 'Montserrat';
     line-height: 67px;
}
p{
    font-size: 19px;
    width: 95%;
    padding-top: 20px;
    padding-bottom: 20px;
      font-family: sans-serif;
      font-weight: normal;
      text-transform: capitalize;
      color: rgba(2, 2, 2, 0.352);
      text-align: left;

}
button{
    padding: 15px 20px;
    border-radius: 50px;
    font-size: 16px;
    border: none;
    background-color: black;
    color: white;
    transition: 0.5s;
    
}
@font-face{
    font-family: 'Montserrat';
    src: url(fonts/Montserrat-VariableFont_wght.ttf);
}

html{
    overflow: hidden;
}
.leave1{
    height: 320px;
    position: absolute;
    top: 100px;
    left: 45%;
    filter: blur(5px);
    rotate: -20deg;
    animation: leave 10s infinite;
}

.leave2{
    height: 320px;
    position: absolute;
    bottom: 80px;
    right: 30px;
    filter: blur(5px);
    rotate: -20deg;
   z-index: 1;
    rotate: 160deg;
    animation: leave 8s infinite;
}
@keyframes leave{
    0%{

    }
    50%{
scale: 1.2;
filter: blur(0);
    }
    100%{

    }
}
main{
   animation: body 5s;
}
@keyframes body{
    0%{
 filter: blur(50px);

 scale: 1.2;
    }
    100%{

    }
}

button:hover{
    scale: 1.1;
    
    
}
