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

html, body {
    height: 100%;
    overflow: hidden;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #000000;
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
}

.name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 300;
    letter-spacing: 0.3em;
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
    padding: 0 2rem;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .name {
        font-size: clamp(2rem, 10vw, 3.5rem);
        letter-spacing: 0.2em;
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .name {
        font-size: clamp(1.75rem, 12vw, 2.5rem);
        letter-spacing: 0.15em;
        padding: 0 1rem;
    }
}
