*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    color: #fff;
    height: 100vh;
    background: #2a3b42bd;
    /* background-image: url(images/customer.png); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    
}
.quote-box{
    width: 700px;
    background-image: url("./images/Jinwiil1 (92).jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 25px black;
    
}
.quote-box h1{
    font-size: 2.2rem;
    margin-bottom: 40px;
    position: relative;
}
.quote-box h1::after{
    content: "";
    position: absolute;
    width: 20%;
    height: 3px;
    background-color: rgb(0, 255, 234);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);

}
.quote-box blockquote{
    font-size: 26px;
    min-height: 110px;
}
.quote-box blockquote::before, .quote-box blockquote::after{
    content: '"';
}
.quote-box span{
    display: block;
    margin-top: 10px;
    float: right;
    position: relative;
    color: gray;
    font-weight: 800;
    font-size: 1.2rem;
}
.quote-box span::before{
    content: "";
    width: 15px;
    height: 2px;
    background: #ce07ad;
    position: absolute;
    top: 50%;
    left: -30%;
}
.quote-box div{
    width: 100%;
    margin-top: 50px;
    display: flex;
    justify-content: center;
}
.quote-box button{
    background: #3a3a85;
    padding: 10px 20px;
    border-radius: 20px;
    border: none;
    box-shadow: 0 0 25px black;
    margin: 0 .5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.quote-box button:nth-child(2){
    border: 2px solid rgb(110, 165, 228);
    background: transparent;
    color: gray;
}
.quote-box button i{
    font-size:1.5rem ;
    color: #75b3fa;
    margin-right: 10px;
    
}
@media(max-width:1024px){
    .quote-box{
    width: 400px;
   
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 25px black;
    
}
}

@media(max-width:770px){
    .quote-box{
    width: 400px;
    height: 300px;
    
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 25px black;
    
}
.quote-box h1{
    font-size: 2rem;
}
.quote-box blockquote{
    font-size: 20px;
    min-height: 110px;
}

.quote-box div{
    width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: center;
}
.quote-box button{
    background: #3a3a85;
    padding: 8px 20px;
    border-radius: 20px;
    border: none;
    box-shadow: 0 0 25px black;
    margin: 0 .5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.quote-box span{
    display: block;
    margin-bottom: 10px;
    float: right;
    position: relative;
}
}