body {
    font-family: Georgia, serif;
    margin: 0;
    padding: 0;
    background-color: #ead3b7;
}
.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}
h1 {
    font-size: 48px;
    margin-bottom: 10px;
}
.quote {
    font-style: italic;
    font-size: 24px; /* Larger quote text size */
    margin-bottom: 20px;
}
.credit {
    font-size: 18px;
}
.contact-info {
    margin-top: 20px;
}
.contact-info a {
    display: inline-block;
    margin: 5px;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    vertical-align: middle;
    background-color: #d6af97; /* Lighter brown background color */
}
.contact-info a:hover {
    background-color: #b88463; /* Darker brown on hover */
}
.headshot {
    margin-top: 20px;
}
.headshot img {
    max-width: 50%;
    height: auto;
    border-radius: 50%;
    cursor: pointer; /* Change cursor to pointer on hover */
}
.social-icon {
    display: inline-block;
    margin: 5px;
    padding: 0;
    width: 30px;
    height: 30px;
    overflow: hidden;
    vertical-align: middle;
}
.social-icon img {
    max-width: 100%;
    height: auto;
    border-radius: 5px; /* Optional: Add border-radius to match other buttons */
}