*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.wrapper{
    width: 100wh;
    height: 100vh;
    background-color: rgb(229,231,235);
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    padding-top: 3rem;
}

h1{
  font-size: 3rem;
  
}
.bottom-bar{
    width: 10%;
    height: 5px;
    background-color: rgb(139,92,246);

}
.testimonial-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 10px;
    width: 600px;
    background-color:rgb(255,255,255);
    padding: 20px;
    border-radius: 10px;
    margin-top: 3rem;
}

.testimonial-container img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: absolute;
    top: -50px;
    left: 10px;
    z-index: 10;
   
}
.img-bg{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: absolute;
    top: -50px;
    left: 18px;
    background-color: rgb(139,92,246);
}
.job-title{
    font-size: 1.2rem;
    font-weight: 500;
    color: rgb(139,92,246);
    text-align: center;
}

.testimonial-container h2{
    font-size: 2.2rem;
    font-weight: 600;
    color: rgb(55,65,81);
    text-align: center;
}

.description{
    color: rgb(159, 165, 173);
    margin-top: 4;
    font-size: 1.19rem;
    font-weight: 400;
}

.buttons{
    margin-top: 1.5rem;
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.surpriseBtn{
    background-color:rgb(139,92,246);
    padding: 10px 20px;
    border-radius: 5px;
    color: rgb(255,255,255);
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    border: none;
}

.surpriseBtn:hover{
    background-color: rgb(124, 72, 244);
}

@media screen and (max-width:650px) {
    .testimonial-container {
        width: 90%;
    }
    
}

@media (max-width: 555px) {
    .description {
        font-size: 1rem;
    }
    .testimonial-container h2{
        font-size: 1.4rem;
    }
}

@media  screen and (max-width:398px) {
    .img-container img{
        top:  -50px;
        left: 2.5rem;
        transform: translateX(80%);
    }
.img-bg{
    top:  -50px;
    left: 2.9rem;
    transform: translateX(80%);
}
    .testimonial-container h2 {
       margin-top: 1.8rem;
    }
}

@media screen and  (max-width: 267px){
   h1{
         font-size: 2.2rem;
   }
}
/* Media Query for screens with a max-width of 768px */
/* @media screen and  (max-width: 768px) {
    .testimonial-container {
        width: 90%;
    }
    
    .buttons {
        flex-direction: row;
    }
    
    .surpriseBtn {
        padding: 10px 15px;
    }
} */