*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', serif;
    background-color: rgb(138, 114, 114);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.card {
    display: flex;
    background-color: white;
    border-radius: 20px;
    align-items: center;
    justify-content: flex-start;
    max-width: 800px;
    max-height: 600px;
    margin: 40px auto;
}

.left {
    background-color: grey;
    height: 500px;
    width: 400px;
    object-fit: cover;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    justify-content: flex-start;
    align-items: center;
    margin-right: 20px;
    padding-left: 25px;
}

.left h2 {
    font-size: 80px;
    margin-top: 100px;
}

.left p {
    margin-top: 10px;
}

.right {
    margin-top: px;
    align-items: center;
    justify-content: center;
}

.right h3{
    margin-bottom: 20px;
}

.right p {
    font-size: 15px;
    font-weight: 400;
    color: grey;
    font-style: italic;
}

.right strong {
    font-weight: 900;
    color: grey;
}

.three img {
    height: 90px;
    width: 90px;
    cursor: pointer;
}

.one {
    margin-top: 20px;
    font-size: 20px;
}

.two {
    margin-top: 20px;
    font-size: 20px;
}

.three {
    margin-top: 20px;
    font-size: 20px;
}

.two a {
    text-decoration: none;
    color: grey;
}

.two a:hover {
    color: black;
}

@media screen and (max-width: 785px) {
    .card {
        display: flex;
        flex-direction: column;
        height: auto;
        width: auto;
    }
    .three img {
        display: inline;
    }
    
}