html, body {
    margin: 0;
    width: 100%;
    height: 100%;
    background: #111;
    color: #f5f5f5;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero {
    text-align: center;
}

h1 {
    margin: 0;
    font-size: clamp(48px, 9vw, 120px);
    letter-spacing: 0.08em;
    font-weight: 700;
}

.tagline {
    margin-top: 18px;
    font-size: clamp(16px, 2vw, 24px);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.7;
}

.button {
    display: inline-block;
    margin-top: 70px;
    padding: 14px 30px;

    color: #c7c2b8;
    text-decoration: none;

    border: 1px solid #6f6a62;
    border-radius: 4px;

    font-size: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;

    transition: 0.2s;
}

.button:hover {
    color: #111;
    background: #c7c2b8;
    border-color: #c7c2b8;
}
