body {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #eaeaea;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
}

h2 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
}

p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}

a {
  color: #333;
}

.container {
    background-color: #fff;
    overflow: hidden;
    width: 100%;
    min-height: 100%;
    display: flex;
}

.photo {
    flex: 1;
    display: flex;
    justify-content: center;
}

.photo img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.bio {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
