/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
}


.container {
    width: 100%;
    max-width: 100%;
    padding: clamp(1rem, 5vw, 4rem);
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 8vh, 6rem);
    margin: auto;
}
/* Title and subtitle with elegant cursive font and full width */
.site-title {
    font-family: 'Caveat', cursive;
    font-size: 15vw;
    width: 100%;
    max-width: 100%;
    line-height: 1.1;
}

.subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 3vw;
    width: 100%;
    max-width: 100%;
    line-height: 1.2;
}

