:root {
    --font-family: 'Helvetica';
}

* {
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    align-items: center;
    display: flex;
    flex-direction: column;
    font-family: var(--font-family);
    height: 100%;
    justify-content: space-between;
    margin: 0;
    padding: 16pt;
    text-align: center;
}

#picture {
    width: 200px;
    border-radius: 33%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}