* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: grid;
    place-items: center;
    background: #111;
    color: #f5f5f5;
    font-family: Georgia, "Times New Roman", serif;
}

.content {
    font-size: clamp(2rem, 6vw, 4rem);
    letter-spacing: 0.02em;
}
