*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "poppins";
}
body{
    background-image: url(bgcimg.jpeg);
    background-repeat: no-repeat;
    object-fit: cover;
    background-size: cover;
    overflow: hidden;
}
span{
    color: aqua;
}
.container{
    margin-top: 10%;
   display: flex;
   justify-content: center;
   align-items: center;
   width: auto;
   border-radius: 50px;
   width: 100%;
   height: 100vh;
   transform: translateY(-85px);
  
   
    
}

.qoutesBox{
    background: #4fb5987b;
    box-shadow:  20px 20px 60px #55c832be,
                 -20px -20px 60px #d05bcd;
    
    border-radius: 20px;
    width: 100vmin;
    height: 70vh;
    text-align: center;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
 
}
.mainHeading{
    font-size: 50px;
    font-weight: 600;
}
.qoute{
    color: lawngreen;
    font-size: 30px;
    font-weight: 650;
    padding: 10px 0;
}

.qoutep{
    border: none;
    padding: 30px 0;
    background-color: #ffffff84;
    font-size: 20px;
    color: black;
    font-weight: 400;
    margin-top: 30px;
    border-radius: 10px 20px;
}
.author{
    display: flex;
    justify-content: flex-end;
}
.qouteau{
    border: 1px solid #0fc82b;
    background-color: #ffffff84;
    font-size: 20px;
    color: black;
    font-weight: 400;
   margin-top: 12px;
    border-radius: 10px 20px;
    padding: 10px; 
}
.Genbtn{
    border: none;
    outline: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
   background-color: rgba(0, 255, 255, 0.555); 
   color: white;
    font-size: 20px;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 20px;
}
.Genbtn:hover{
   background-color:lightgreen;
   color: black;
    transition: all 0.5s ease-in;
}
@media screen  and (max-width: 650px){
    .mainHeading{
          font-size: 35px;
          padding:15px ;
    }
    .qoute{
        font-size: 25px;
    }
    .qoutesBox{
        width: 80%;
        height: 80%;
    }
   .container{
    height: 100vh;
   }
    
}