html {
    font-size: 62.5%; 
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f2f5;
    margin: 0;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    margin: 0 auto;
    color: #333;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
}

#quotes-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
    max-width: 120rem;
}

.quote {
    background: #ffffff;
    border-left: 5px solid #007bff; 
    padding: 2.5rem;
    width: 35rem;
    border-radius: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease; 
}

.quote:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.quote-text {
    font-size: 1.5rem;
    color: #2c3e50;
    line-height: 1.5;
    margin: 0 0 15px 0;
    display: block;
}

.quote-author {
    font-size: 1.2rem;
    color: #7f8c8d;
    font-weight: 600;
    text-align: right;
    display: block;
    font-style: italic;
}