*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}
body{
    
}
.quotes-10n1{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}
.image_Quotes{
  display: block;
  
  padding: 2rem 20rem 3rem;
  border-radius: 2rem;
  text-align: center;
  position: relative;
    background-image: url("./images/Jinwiil1\ \(39\).jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.image_Quotes h1{
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 10px
}
.image_Quotes img{
    width: 30vw;
    height: 20vw;
    margin: 2rem 0 0 0;
    border-radius: 2rem;
    transition: .3s ease;
    box-shadow: 0 0 25px gray;
    animation: jinwii .9s linear infinite;
    border: 2px solid rgb(27, 25, 25);
    
}
/* @keyframes jinwiil{
    0%{
        transform: translateY(-10px);
    }
    50%{
        transform: translateY(0);
    }
    100%{
        transform: translateY(10px);
    }
} */

.image_Quotes button{
    padding: 1rem 4rem;
    border-radius: 10px;
    border: 2px solid rgb(71, 5, 5);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    transition: .3s ease;
    cursor: pointer;
    
}
.image_Quotes button:hover{
    transform: scale(1.2);
    background: rgb(51, 15, 1);
}
.image_Quotes p{
    position: absolute;
    font-size: 1.3rem;
    color: rgb(192, 188, 188);
    left: 3rem;
    bottom: 8px;
}
.image_Quotes p::before{
  content: "";
  width: 20px;
  height: 3px;
  position: absolute;
  background: green;
  left: -25px;
  bottom: 8px;
}
@media(max-width:770px){
  .image_Quotes{
  display: block;
 
  padding: 3rem 4rem;
  border-radius: 2rem;
}
.image_Quotes img{
    width: 300px;
    height: 250px;
    margin-top: 2rem;
    border-radius: 2rem;
    
}
}
@media(max-width:400px){
  .image_Quotes{
  display: block;
 
  padding: 1rem 2;
  border-radius: 2rem;
}
}