*,
*::before,
*::after {
    box-sizing: border-box;
}
body {
    margin: 0;
    min-height: 100dvh;
    background-color: rgb(38, 39, 39);
    color: rgb(217, 216, 216);
    font-family: system-ui, sans-serif;
}
#page-wrapper {
    min-height: 97dvh;
    display: flex;
    flex-direction: column;
}
#topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: rgb(61, 70, 70);
}
.photo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}
#person-photo {
    height: clamp(3.5rem, 8vh, 5.5rem);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    object-fit: cover;
}
#person-name {
    font-size: clamp(1.2rem, 1.5vw, 1.6rem);
    margin: 0;
}
.topbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}
#back-button {
    all: unset;
    cursor: pointer;
    width: 3rem;
    height: auto;
}
#back-button:hover {
    opacity: 0.7;
}
#serviceannouncement {
    display: none;
}
#serviceannouncement[shown] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #FF2D1A;
    color: rgb(217, 216, 216);
}
#full-description {
    padding: 1.5rem 1rem 0;
    text-align: center;
}
#full-description p {
    margin: 0 auto;
    width: 85dvw;
    max-width: 70ch;
    font-size: clamp(1.4rem, 3.5vh, 2.4rem);
}
#developer-credit {
    font-size: 0.65rem;
    padding: 0.4rem 0.8rem;
    opacity: 0.8;
}
@media (max-height: 768px) {
    #full-description p {
        width: 90dvw;
    }
}