body {
    background-color: rgb(240, 240, 240);
    overflow: hidden;
}

.page-container {
    height: 100vh;
    width: 100vw;
}

.logo {
    max-width: 150px;
    min-width: 100px;
}

.content-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-around;
    align-items: center;
}

.card-container {
    display: flex;
    gap: 5px;
    height: 10vh;

}

.portrait {
    aspect-ratio: 1;
    height: 100%;
    min-height: 80px;
    border-radius: 10px;
}

.text-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.name, .subtitle, .email {
    font-family: "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    white-space: nowrap;
}

.subtitle {
    font-weight: normal;
}

.email {
    color: gray;
}