:root {
    --primary: #055a40;
    --primary-light: #c8f5c7;
    --secondary: #c3acce;
    --secondary-light: #dfd9e2;
    --accent: #273469;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--secondary-light);
}

h1 {
    font-size: 1.5rem;
    padding: 1rem;
}

.headshot {
    max-width: 30%;
    border-radius: 50%;
}

p {
    width: 100%;
    text-align: center;
    font-size: 2rem;
}

.primary-link {
    color: var(--primary);
}

.primary-link:hover {
    color: var(--accent);
}

.d-lg-none {
    display: none;
}

@media screen and (max-width: 992px) {
    .headshot {
        max-width: 50%;
        border-radius: 50%;
    }

    .d-lg-none {
        display: initial;
    }
}
