div {
    display: inline-block;
    text-align: left;
}

html {
    --evr-primary-blue: #264d82;
    --mit-red: #750014;
    accent-color: var(--evr-primary-blue);
}

body {
    max-width: var(--page-width);
}

.bio-text p {
    font-size: medium;
}

.evr {
    color: var(--evr-primary-blue);
    font-family: Garamond;
}

.bio-container {
    display: flex;
    align-items: flex-start; /* Align items at the top */
    gap: 1rem; /* Optional: Add some space between the image and the paragraph */
    max-width: 60%; /* Adjust this value to control the width of the content */
    margin: 0 auto; /* Center the content horizontally */
    margin-top: 2rem;
    padding-bottom: 5rem;
}

.in-line-link {
    padding: 0;
    font-weight: bold;
}

.in-line-link:hover {
    text-decoration: underline;
}

.web {
    display: block;
}

.phone {
    display: none;
}

.leftmost {
    margin-left: -0.5rem;
}

@media screen and (max-width: 768px) {
    /* .bio-text p {
        font-size: 1.8vh;
    } */

    /* Other styles for smaller screens */
    body {
        max-width: 90%;
    }

    .bio-container {
        flex-direction: column; /* Stack the image and text vertically */
        max-width: 100%;
        margin-top: 0.5rem;
        margin-bottom: 0;
    }

    .bio-text {
        text-align: center;
        margin-left: 1rem;
        margin-right: 1rem;
        margin-top: -1rem;
    }

    .bio-container img {
        width: 50%; /* Adjust width as necessary */
        height: auto; /* Adjust height automatically */
        margin: auto;
    }

    .web {
        display: none;
    }

    .phone {
        display: block;
    }

    .leftmost {
        margin: 0;
    }
}

