*{
    margin: 0;
    padding: 0;
    font-family: "poppins", sans-serif;
    box-sizing: border-box;
}

.container{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffe3e3;
    position: relative;
}

.container img{
    width: 90%;
    height: auto; /* Adjusted to maintain aspect ratio */
}

.container h1{
    position: absolute;
    top: 10%; /* Adjusted for better positioning */
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    color: black;
    text-align: center;
    font-size: 5vw; /* Responsive font size based on viewport width */
    font-weight: 700;
}

.container h2{
    position: absolute;
    top: 23%; /* Adjusted for better positioning */
    left: 50%;
    transform: translateX(-50%);
    color: black;
    text-align: center;
    font-size: 3vw; /* Responsive font size based on viewport width */
    font-weight: 300;
}


.quotes{
    position: absolute;
    width: 100%;
    font-size: 1.5rem;
    color: black;
    text-align: center;
    font-size: 2vw; /* Responsive font size based on viewport width */
    font-weight: 500;
    bottom: 10%; /* Adjusted for better positioning */
}

.quotes h2{
    font-size: 3vw; /* Responsive font size based on viewport width */
    margin-top: 10px;
    font-weight: 500;
}