@font-face {
    font-family: 'PPMuseum';
    src: url('./PPMuseum-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

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

body {
    font-family: system-ui, -apple-system, sans-serif;
    background-color: #FBFBFA;
    height: 100vh;
    overflow: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    height: 100vh;
    position: relative;
}

.image-container {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 30/41;
    overflow: hidden;
    border-radius: 1.5rem 1.5rem 0 1.5rem;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.heading {
    max-width: 400px;
    padding: 0 0.75rem;
    color: #000000;
    font-size: 28px;
    font-weight: 400;
    line-height: 130%;
    font-family: 'PPMuseum', system-ui, -apple-system, sans-serif;
    text-align: left;
}

/* Responsive design */
@media (max-width: 480px) {
    .container {
        justify-content: flex-start;
        gap: 1rem;
    }

    .heading {
        font-size: 24px;
        line-height: 120%;
    }
}