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

html, body {
    height: 100%;
}

body {
    background-color: #FBFAF4;
    font-family: 'Manrope', sans-serif;
    color: #0a0a0a;
}

.content {
    position: fixed;
    bottom: 1rem;
    left: 1.6rem;
    max-width: 600px;
}

h1 {
    font-size: clamp(2.5rem, 10vw, 6rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 0.6rem;
}

p {
    font-size: clamp(0.65rem, 1.5vw, 0.9rem);
    line-height: 1.5;
    font-weight: 300;
    color: #0a0a0a;
}

@media (max-width: 600px) {
    .content {
        position: fixed;
        bottom: 2rem;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: calc(100% - 3rem);
        max-width: 100%;
        text-align: center;
    }
}
