*{
   margin: 0;
   padding: 0;
}
html{
   scroll-behavior: smooth;
}
body{
   background: url(bg2.png) no-repeat center fixed ;
   background-color: black;
   overflow: auto;
   background-size: cover;
   /* backdrop-filter: blur(5px); */
}
::-webkit-scrollbar {
   display: none;
}
.black{
   color: #fff;
}
nav{
   display: flex;
   justify-content: space-around;
   align-items: center;
   position: fixed;
   top: 25px;
   left: 10px;
   right: 10px;
   width: 100%;
   height: 5vh;
   z-index: 10;
}
.lside{
   margin: 20px;
   font-size: 30px;
   color: #fff;
}
/* .rside{
   margin:20px;
   font-size: 18px;
} */
nav ul{
   display: flex;
}
nav ul li{
   list-style: none;
   margin: 0 15px;
}
a {
   color: #fff;
   text-decoration: none;
   padding: 10px 20px;
   border-radius: 20px;
   transition: transform 0.3s, background-color 0.3s, color 0.3s;
}
a:hover {
   background-color: #fff;
   color: black;
   transform: scale(1.1);
}
.section1{
   display: flex;
   flex-direction: row;
   align-items: center;
   gap: 200px;
}
.lside1 {
   margin-left: 50px;
   margin-top: 120px;
   width: 50%;
   height: 500px;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
}
.lside1 h1 {
   font-size: 2.5em;
   color: #ffffff;
   text-align: center;
}
.lside1 p {
   padding: 50px;
   font-size: 1.5em;
   color: #ffffff;
   text-align: center;
}
.rside1 {
   margin-left: 50px;
   margin-top: 120px;
   width: 300px;
   height: 300px;
   display: grid;
   place-items: center;
   border: 2px solid #65b5f5;
   border-radius: 50%;
   box-shadow: 0 0 10px #65b5f5;
   background-image: url(bg3.png);
   background-size: cover;
   background-position: center;
}
.section2{
   height: 100vh;
   display: flex;
   justify-content: center;
   align-items: center;
}
h2{
   text-align: center;
}
p{
   padding: 20px;
   text-align: center;
}
.center{
   height: 500px;
   width: 500px;
   border:2px solid #fff;
   border-radius: 35px;
   padding: 50px;
   box-sizing: border-box;
   background-color: rgba(255, 255, 255, 0.2);
   border-radius: 15px;
   padding: 20px;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
   backdrop-filter: blur(10px); 
}
.about{
   padding-top: 50px;
   font-size: 1.2em;
   line-height: 1.4;
}
.section3{
   height: 100vh;
   display: block;
}
.tag{
   color: rgb(165, 92, 201);
}
.play{
   border-radius: 10px;
   background-color: azure;
   color: rgb(165, 92, 201);
}
.projects .top{
   padding-top: 100px;
   text-align: center;
   height:15vh;
}
.projects .bottom{
   display: flex;
   justify-content: space-evenly;
   align-items: center;
}
.about1{
   padding-top: 20px;
   font-size: 1.1em;
   line-height: 1.6;
}
.box{
   border: 2px solid #65b5f5;
   height: 300px;
   width: 300px;
   text-align: center;
   border-radius: 50px;
   box-shadow: 0 0 10px #65b5f5;
   padding: 20px;
   transition: height 0.3s, width 0.3s;
   background-color: rgba(255, 255, 255, 0.1);
}
.box:hover{
   height: 320px;
   width:320px;
}
.section4, .section5{
   height: 100vh;
   margin: 50px;
   display: grid;
   place-items: center;
}
.section4 {
   display: flex;
   flex-direction: row;
   align-items: center;
   gap: 200px;
}
.section4 .top {
   display: flex;
   flex-direction: column;
   align-items: center;
   width: 80%;
   max-width: 800px;
}
.res{
   padding-top: 90px;
   padding-bottom: 20px;
}
#frame {
   width: 100%;
   height: 500px;
   border: none;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
   margin-bottom: 20px; 
}
.section4 .bottom {
   display: flex;
   justify-content: center;
   gap: 15px;
}
.view, .down {
   padding: 10px 20px;
   font-size: 16px;
   background-color: #fff;
   color: #000000;
   border: none;
   border-radius: 5px;
   cursor: pointer;
   transition: background-color 0.3s;
}
.view:hover, .down:hover {
   background-color: #789DBC;
}
.box1{
   max-width: 600px;
   margin: auto;
   padding: 20px;
   background: #fff;
   border-radius: 10px;
   box-shadow: 0px 0px 10px rgba(82, 115, 77, 0.2);
}
.box1 input, .box1 textarea {
   width: 95%;
   margin-top: 10px;
   padding: 10px;
   border: 1px solid #52734D;
   border-radius: 5px;
}
.box1 button {
   margin-top: 20px;
   padding: 10px 20px;
   background-color: #52734D;
   color: #fff;
   border: none;
   border-radius: 5px;
   cursor: pointer;
   transition: background 0.3s;
}
.box1 button:hover {
   background-color: #789DBC;
}