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

body {
    font-family: 'DM Sans', sans-serif;
    background-color: #EFEEEC;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
}

h1 {
    font-size: 1.5em;
    color: #333;
    font-weight: 500;
}

@media (max-width:992px) {
    h1 {
        font-size: 1.2em; 
    }       
}