:root {
    --bg-color: #161412; 
    --text-primary: #e6e2dd; 
    --text-secondary: #5c5550;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    width: 100%;
    overflow: hidden; 
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: "Times New Roman", Times, serif;
    -webkit-font-smoothing: antialiased;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    padding: 2rem;
    
    margin-bottom: 10vh; 
}

h1 {
    font-weight: 400; 
    font-style: italic;
    font-size: clamp(2.5rem, 6vw, 5rem);
    letter-spacing: 0.05em; 
    
}

.footer {
    position: absolute;
    bottom: 2rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: normal;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

::selection {
    background: var(--text-primary);
    color: var(--bg-color);
}