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

html,
body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: "Helvetica Now", Helvetica, Arial, sans-serif;
    background-color: #ffefcb;
    min-height: 100vh;
    padding: 2rem;
}

.container {
    text-align: left;
    width: 100%;
    max-width: 100%;
}

h1 {
    font-size: clamp(3rem, 12vw, 12rem);
    font-weight: 400;
    color: #000;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-align: left;
}

p {
    font-size: 1.125rem;
    font-weight: 300;
    color: #333;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }
}