* {
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    margin: 0;
    background-color: #3a3a3a;
}

.page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card {
    display: flex;
    gap: 30px;
    background-color: #ffffff;
    padding: 30px;
    border: 8px solid #000;
    border-radius: 12px;
    max-width: 700px;
    transition: border-color 0.5s ease;
}

.card img {
    width: 250px;
    height: 250px;
    object-fit: cover;
}

.quote {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

blockquote {
    margin: 0;
    font-size: 28px;
    font-style: italic;
    line-height: 1.4;
}

.author {
    margin-top: 25px;
    font-weight: bold;
    text-align: right;
    font-size: 25px;
}
