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

body {
    background: #fff;
    color: #000;
    font-family: Helvetica, system-ui, Arial, sans-serif;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
}

h1 {
    font-size: clamp(4rem, 15vw, 12rem);
    font-weight: 600;
}

p {
    color: #767676;
    font-size: clamp(0.9rem, 2vw, 1.15rem);
    margin-top: 0.5rem;
    letter-spacing: 0.05em;
    text-align: center;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    text-align: center;
    font-size: 0.8rem;
    color: #767676;
    letter-spacing: 0.03em;
}
