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

body {
    background-color: #e8dfd0;
    font-family: 'Cormorant Garamond', serif;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
}

h1 {
    font-size: 5rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    color: #5a5a5a;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
        letter-spacing: 0.2em;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
        letter-spacing: 0.15em;
    }
}
