* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    background-color: #121212; 
    color: #e0e0e0;           
    
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 2rem; 
}

.container {
    max-width: 800px;
}

header h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    word-spacing: 5px;
    font-size: 2rem;   
    color: #f5f5f5;      
    
    margin-bottom: 1.5rem;
}

main p {
    font-size: 1.25rem;
    color: #aaa; 
    font-weight: 300;
    font-style: italic; 
}

footer {
    margin-top: 4rem;
    font-size: 0.9rem;
    color: #777; 
}

@media (max-width: 600px) {
    header h1 {
        font-size: 3rem;
    }
    main p {
        font-size: 1.1rem;
    }
}